svn commit: trunk/uClibc/libc/sysdeps/linux/common

vapier at uclibc.org vapier at uclibc.org
Sat Feb 16 08:24:02 UTC 2008


Author: vapier
Date: 2008-02-16 00:24:02 -0800 (Sat, 16 Feb 2008)
New Revision: 21034

Log:
fix typo pointed out by skinkie in #2194

Modified:
   trunk/uClibc/libc/sysdeps/linux/common/posix_fadvise64.c


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/common/posix_fadvise64.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/posix_fadvise64.c	2008-02-15 23:35:06 UTC (rev 21033)
+++ trunk/uClibc/libc/sysdeps/linux/common/posix_fadvise64.c	2008-02-16 08:24:02 UTC (rev 21034)
@@ -34,7 +34,7 @@
     int ret = INTERNAL_SYSCALL (posix_fadvise64, err, 6, fd,
                                __LONG_LONG_PAIR ((long) (offset >> 32),
                                                  (long) offset),
-                               (off_t) len, advise);
+                               (off_t) len, advice);
   if (!INTERNAL_SYSCALL_ERROR_P (ret, err))
     return 0;
   return INTERNAL_SYSCALL_ERRNO (ret, err);




More information about the uClibc-cvs mailing list