From: Mathieu Desnoyers Date: Thu, 24 May 2012 15:01:03 +0000 (-0400) Subject: fix: add missing parenthesis X-Git-Tag: v2.1.0-rc1~136 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=b1c900e9d222629937cb1a42e769318e88f28664 fix: add missing parenthesis Signed-off-by: Mathieu Desnoyers --- diff --git a/src/common/compat/fcntl.h b/src/common/compat/fcntl.h index b54a54387..4c89361eb 100644 --- a/src/common/compat/fcntl.h +++ b/src/common/compat/fcntl.h @@ -28,7 +28,7 @@ extern int compat_sync_file_range(int fd, off64_t offset, off64_t nbytes, #define lttng_sync_file_range(fd, offset, nbytes, flags) \ compat_sync_file_range(fd, offset, nbytes, flags) -#elif (defined(__FreeBSD__) || defined(__CYGWIN__) +#elif (defined(__FreeBSD__) || defined(__CYGWIN__)) typedef long int off64_t; typedef off64_t loff_t;