diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-02-16 21:56:30 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-02-16 21:56:30 +0000 |
commit | 19b10f2dabfb2b04f86eea92c316614e75286552 (patch) | |
tree | 39976b04d0fa095d41800c9f003dba362d176e52 /lib | |
parent | 2244399f3eb9a84bc7ecee04ab326265581aab47 (diff) |
Make "flags" field in f?chflags(2) consistent--unsigned int
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/sys/chflags.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/chflags.2 b/lib/libc/sys/chflags.2 index fb144fcc8e5..d370c4f9093 100644 --- a/lib/libc/sys/chflags.2 +++ b/lib/libc/sys/chflags.2 @@ -44,9 +44,9 @@ .Fd #include <sys/stat.h> .Fd #include <unistd.h> .Ft int -.Fn chflags "const char *path" "int flags" +.Fn chflags "const char *path" "unsigned int flags" .Ft int -.Fn fchflags "int fd" "int flags" +.Fn fchflags "int fd" "unsigned int flags" .Sh DESCRIPTION The file whose name is given by |