summaryrefslogtreecommitdiff
path: root/misc/chflags.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/chflags.c')
-rw-r--r--misc/chflags.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/chflags.c b/misc/chflags.c
index 011ca69e3f..581d9a00d0 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)
{