aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/syscalls.h
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-04-10 22:53:57 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2006-04-11 06:18:40 -0700
commit5246d0503130fa58904c8beb987fcf93b96d8ab6 (patch)
treec807f1bba6a1d5abf0b3a9f221bc3e49ca5810c8 /include/linux/syscalls.h
parent[PATCH] Clean up arch-overrides in linux/string.h (diff)
downloadlinux-dev-5246d0503130fa58904c8beb987fcf93b96d8ab6.tar.xz
linux-dev-5246d0503130fa58904c8beb987fcf93b96d8ab6.zip
[PATCH] sync_file_range(): use unsigned for flags
Ulrich suggested that the `flags' arg to sync_file_range() become unsigned. Cc: Ulrich Drepper <drepper@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to '')
-rw-r--r--include/linux/syscalls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
index 5717147596b6..89c4180d42f5 100644
--- a/include/linux/syscalls.h
+++ b/include/linux/syscalls.h
@@ -572,6 +572,6 @@ asmlinkage long sys_unshare(unsigned long unshare_flags);
asmlinkage long sys_splice(int fdin, int fdout, size_t len,
unsigned int flags);
asmlinkage long sys_sync_file_range(int fd, loff_t offset, loff_t nbytes,
- int flags);
+ unsigned int flags);
#endif