diff options
Diffstat (limited to 'sysdeps/posix/posix_fallocate64.c')
-rw-r--r-- | sysdeps/posix/posix_fallocate64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/posix/posix_fallocate64.c b/sysdeps/posix/posix_fallocate64.c index 539244de58..4be48e77f9 100644 --- a/sysdeps/posix/posix_fallocate64.c +++ b/sysdeps/posix/posix_fallocate64.c @@ -61,7 +61,7 @@ posix_fallocate64 (int fd, __off64_t offset, size_t len) { len -= step; - if (pwrite64 (fd, "", 1, offset) != 1) + if (__pwrite64 (fd, "", 1, offset) != 1) return errno; offset += step; |