Build fix: brace-enclosed initlializer lists error with g++ 4.8
[lttng-tools.git] / src / common / compat / compat-fcntl.cpp
index bc014d6404df4f1a78f71a0783d4b4ab6b47656a..18b6fa3824cb87f672ed5eda8545149f236c6f09 100644 (file)
@@ -1,19 +1,19 @@
 /*
  * Copyright (C) 2011 David Goulet <dgoulet@efficios.com>
  *
- * SPDX-License-Identifier: GPL-2.0-only
+ * SPDX-License-Identifier: LGPL-2.1-only
  *
  */
 
 #define _LGPL_SOURCE
-#include <common/compat/fcntl.h>
-#include <common/macros.h>
+#include <common/compat/fcntl.hpp>
+#include <common/macros.hpp>
+
 #include <unistd.h>
 
 #ifdef __linux__
 
-int compat_sync_file_range(int fd, off64_t offset, off64_t nbytes,
-               unsigned int flags)
+int compat_sync_file_range(int fd, off_t offset, off_t nbytes, unsigned int flags)
 {
 #ifdef HAVE_SYNC_FILE_RANGE
        return sync_file_range(fd, offset, nbytes, flags);
This page took 0.025667 seconds and 4 git commands to generate.