about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-07-31 19:33:23 +0000
committerJakub Jelinek <jakub@redhat.com>2007-07-31 19:33:23 +0000
commit098813982b7315eb8ee3aa3c220f3bb7328556cf (patch)
treed5f26c72a849a92686ba30420f1aec66ddfe0351
parenta26d01bb6c663c7268aab63a7de97263c4d37c08 (diff)
downloadglibc-098813982b7315eb8ee3aa3c220f3bb7328556cf.tar.gz
glibc-098813982b7315eb8ee3aa3c220f3bb7328556cf.tar.xz
glibc-098813982b7315eb8ee3aa3c220f3bb7328556cf.zip
* sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
syscall arguments count.
	* sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
	syscall arguments count.
-rw-r--r--ChangeLog3
-rw-r--r--sysdeps/unix/sysv/linux/posix_fallocate.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 61dcbabc85..eee19697aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-07-31  Jakub Jelinek  <jakub@redhat.com>
 
+	* sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
+	syscall arguments count.
+
 	* stdio-common/tfformat.c (sprint_doubles): Add 12 new tests.
 
 2007-07-30  Roland McGrath  <roland@redhat.com>
diff --git a/sysdeps/unix/sysv/linux/posix_fallocate.c b/sysdeps/unix/sysv/linux/posix_fallocate.c
index 9cfade60ca..6944793fa2 100644
--- a/sysdeps/unix/sysv/linux/posix_fallocate.c
+++ b/sysdeps/unix/sysv/linux/posix_fallocate.c
@@ -39,7 +39,7 @@ posix_fallocate (int fd, __off_t offset, __off_t len)
 # endif
     {
       INTERNAL_SYSCALL_DECL (err);
-      int res = INTERNAL_SYSCALL (fallocate, err, 4, fd, 0,
+      int res = INTERNAL_SYSCALL (fallocate, err, 6, fd, 0,
 				  __LONG_LONG_PAIR (offset >> 31, offset),
 				  __LONG_LONG_PAIR (len >> 31, len));