Explorar o código

posix_fadvise64 on 64bit systems take 5 arguments, not 6, as pointed out by skinkie in #2194

Mike Frysinger %!s(int64=18) %!d(string=hai) anos
pai
achega
5bb327a1db
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      libc/sysdeps/linux/common/posix_fadvise64.c

+ 1 - 1
libc/sysdeps/linux/common/posix_fadvise64.c

@@ -31,7 +31,7 @@ int posix_fadvise64(int fd, __off64_t offset, __off64_t len, int advice)
   if (len != (off_t) len)
     return EOVERFLOW;
   INTERNAL_SYSCALL_DECL (err);
-    int ret = INTERNAL_SYSCALL (posix_fadvise64, err, 6, fd,
+    int ret = INTERNAL_SYSCALL (posix_fadvise64, err, 5, fd,
                                __LONG_LONG_PAIR ((long) (offset >> 32),
                                                  (long) offset),
                                (off_t) len, advice);