Fix: log_level usage on mingw platform
[babeltrace.git] / src / compat / mman.h
index 9f494526617469f5292a7341ee803a5ab26c9cda..bdab9d1903fbab5e08227f4d498cef8de69050c3 100644 (file)
@@ -46,7 +46,7 @@
  * mappings to exceed the file's size (even within a page).
  */
 void *bt_mmap(void *addr, size_t length, int prot, int flags, int fd,
-       off_t offset);
+       off_t offset, int log_level);
 
 int bt_munmap(void *addr, size_t length);
 
@@ -56,7 +56,7 @@ int bt_munmap(void *addr, size_t length);
 
 static inline
 void *bt_mmap(void *addr, size_t length, int prot, int flags, int fd,
-       off_t offset)
+       off_t offset, int log_level)
 {
        return (void *) mmap(addr, length, prot, flags, fd, offset);
 }
This page took 0.02436 seconds and 4 git commands to generate.