aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/powerpc/ftruncate64.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-02-16 18:32:23 +0000
committerUlrich Drepper <drepper@redhat.com>2000-02-16 18:32:23 +0000
commit109014ca82167257d721f3ca5119a7c3f531802e (patch)
treecb40046c34dc91012b02422ece42a2480860100c /sysdeps/unix/sysv/linux/powerpc/ftruncate64.c
parent1dc235884e01c29205572c28890166649794ca5c (diff)
downloadglibc-109014ca82167257d721f3ca5119a7c3f531802e.tar
glibc-109014ca82167257d721f3ca5119a7c3f531802e.tar.gz
glibc-109014ca82167257d721f3ca5119a7c3f531802e.tar.bz2
glibc-109014ca82167257d721f3ca5119a7c3f531802e.zip
Update.
2000-02-16 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/powerpc/mmap64.c (__mmap64): Fix return value. 2000-02-16 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/powerpc/ftruncate64.c (ftruncate64): Fix typo.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/ftruncate64.c')
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/ftruncate64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/ftruncate64.c b/sysdeps/unix/sysv/linux/powerpc/ftruncate64.c
index 379f727f08..a39624b2af 100644
--- a/sysdeps/unix/sysv/linux/powerpc/ftruncate64.c
+++ b/sysdeps/unix/sysv/linux/powerpc/ftruncate64.c
@@ -47,7 +47,7 @@ ftruncate64 (fd, length)
#ifndef __ASSUME_TRUNCATE64_SYSCALL
int saved_errno = errno;
#endif
- int result = __syscall_ftruncate64 (fd, off64_length);
+ int result = __syscall_ftruncate64 (fd, length);
#ifndef __ASSUME_TRUNCATE64_SYSCALL
if (result != -1 || errno != ENOSYS)