diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2015-01-26 16:50:29 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2015-01-26 16:50:29 +0100 |
commit | 92de8a5f6ffb1ff9f7183fd08d872aa098b75ae2 (patch) | |
tree | 695b5aabc7bfdf8e018deea87e300a449f3a8244 /libc/sysdeps/linux | |
parent | d88e1855ff2828fbad0335fc8e06dd295e1c1130 (diff) |
libc: sync_file_range missing comma
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/common/sync_file_range.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/sync_file_range.c b/libc/sysdeps/linux/common/sync_file_range.c index 267b922eb..6cd7e94d6 100644 --- a/libc/sysdeps/linux/common/sync_file_range.c +++ b/libc/sysdeps/linux/common/sync_file_range.c @@ -28,7 +28,7 @@ static int __NC(sync_file_range)(int fd, off64_t offset, off64_t nbytes, unsigne return INLINE_SYSCALL(sync_file_range, 7, fd, 0, OFF64_HI_LO(offset), OFF64_HI_LO(nbytes), flags); # elif defined __NR_sync_file_range2 - return INLINE_SYSCALL(sync_file_range, 6, fd, flags + return INLINE_SYSCALL(sync_file_range, 6, fd, flags, OFF64_HI_LO(offset), OFF64_HI_LO(nbytes)); # else return INLINE_SYSCALL(sync_file_range, 6, fd, |