Explorar o código

- fix compilation if LFS is off and STUBs are requested

Bernhard Reutner-Fischer %!s(int64=15) %!d(string=hai) anos
pai
achega
d79d93813a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      libc/sysdeps/linux/common/sync_file_range.c

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

@@ -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;