summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/mips/ftruncate64.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2002-09-28 13:40:10 +0000
committerAndreas Jaeger <aj@suse.de>2002-09-28 13:40:10 +0000
commitf1a0483069b541f13eaf398d162e650aaaf790c1 (patch)
treea9272bf9200fb19e6296f3d9b86b8be7aef98826 /sysdeps/unix/sysv/linux/mips/ftruncate64.c
parentd221f784bca7e61158ab6d43735292f5a9ef2d87 (diff)
Fix number of args to syscall.
Diffstat (limited to 'sysdeps/unix/sysv/linux/mips/ftruncate64.c')
-rw-r--r--sysdeps/unix/sysv/linux/mips/ftruncate64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/ftruncate64.c b/sysdeps/unix/sysv/linux/mips/ftruncate64.c
index 047bcb5061..fc88539b31 100644
--- a/sysdeps/unix/sysv/linux/mips/ftruncate64.c
+++ b/sysdeps/unix/sysv/linux/mips/ftruncate64.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -50,7 +50,7 @@ __ftruncate64 (int fd, off64_t length)
#ifndef __ASSUME_TRUNCATE64_SYSCALL
int saved_errno = errno;
#endif
- int result = INLINE_SYSCALL (ftruncate64, 3, fd, 0,
+ int result = INLINE_SYSCALL (ftruncate64, 4, fd, 0,
__LONG_LONG_PAIR (high, low));
#ifndef __ASSUME_TRUNCATE64_SYSCALL
if (result != -1 || errno != ENOSYS)