Commit df23b568 authored by Bernhard Reutner-Fischer's avatar Bernhard Reutner-Fischer
Browse files

- use the correct type (__u_long is correct, __ulong_t is not typed)

parent b690801c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@
+                         fd,((__u_quad_t)offset >> MMAP2_PAGE_SHIFT));
+#else
+   return __syscall_mmap2(addr, len, prot, flags,
+                          fd,((__ulong_t)offset >> MMAP2_PAGE_SHIFT));
+                          fd,((__u_long)offset >> MMAP2_PAGE_SHIFT));
+#endif
 }