OSDN Git Service

- fix compilation if LFS is off and STUBs are requested
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Tue, 28 Oct 2008 12:50:10 +0000 (12:50 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Tue, 28 Oct 2008 12:50:10 +0000 (12:50 -0000)
libc/sysdeps/linux/common/sync_file_range.c

index 53f7ae6..90a8edd 100644 (file)
@@ -24,7 +24,7 @@ int sync_file_range(int fd, off64_t offset, off64_t nbytes, unsigned int flags)
                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;