Skip to content

Commit

Permalink
* sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
Browse files Browse the repository at this point in the history
syscall arguments count.
	* sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
	syscall arguments count.
  • Loading branch information
Jakub Jelinek committed Jul 31, 2007
1 parent a26d01b commit 0988139
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/posix_fallocate.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));

Expand Down

0 comments on commit 0988139

Please sign in to comment.