From b1c900e9d222629937cb1a42e769318e88f28664 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 24 May 2012 11:01:03 -0400 Subject: [PATCH] fix: add missing parenthesis Signed-off-by: Mathieu Desnoyers --- src/common/compat/fcntl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1