mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 22:15:57 +03:00
Fix possible precedence problems.
This commit is contained in:
parent
5d84518f00
commit
7d0393338c
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ extern "C" {
|
|||
#define CSYNC_TOSTRING(s) #s
|
||||
|
||||
/* csync version macros */
|
||||
#define CSYNC_VERSION_INT(a, b, c) (a << 16 | b << 8 | c)
|
||||
#define CSYNC_VERSION_INT(a, b, c) ((a) << 16 | (b) << 8 | (c))
|
||||
#define CSYNC_VERSION_DOT(a, b, c) a ##.## b ##.## c
|
||||
#define CSYNC_VERSION(a, b, c) CSYNC_VERSION_DOT(a, b, c)
|
||||
|
||||
|
|
Loading…
Reference in a new issue