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

aldot at uclibc.org aldot at uclibc.org
Tue Oct 28 12:50:10 UTC 2008


Author: aldot
Date: 2008-10-28 05:50:10 -0700 (Tue, 28 Oct 2008)
New Revision: 23830

Log:
- fix compilation if LFS is off and STUBs are requested


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


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/common/sync_file_range.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/sync_file_range.c	2008-10-28 09:55:44 UTC (rev 23829)
+++ trunk/uClibc/libc/sysdeps/linux/common/sync_file_range.c	2008-10-28 12:50:10 UTC (rev 23830)
@@ -24,7 +24,7 @@
 		flags);
 }
 #elif defined __UCLIBC_HAS_STUBS__
-int sync_file_range(int fd, off64_t offset, off64_t nbytes, unsigned int flags)
+int sync_file_range(int fd, __off64_t offset, __off64_t nbytes, unsigned int flags)
 {
 	__set_errno(ENOSYS);
 	return -1;




More information about the uClibc-cvs mailing list