From 5d2556c4fa4629b1c3adf59f29c699f00d4122ea Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sat, 7 Feb 2015 21:56:15 +0100 Subject: hurd: fix f?chflags prototypes, declare them and their flags --- misc/chflags.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'misc/chflags.c') diff --git a/misc/chflags.c b/misc/chflags.c index 48a9ce0..241be86 100644 --- a/misc/chflags.c +++ b/misc/chflags.c @@ -21,12 +21,12 @@ /* Change the flags of FILE to FLAGS. */ -int chflags (const char *file, int flags) __THROW; +int chflags (const char *file, unsigned long int flags) __THROW; int chflags (file, flags) const char *file; - int flags; + unsigned long int flags; { if (file == NULL) { -- cgit v1.1