diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2008-03-22 19:37:06 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2008-03-22 19:37:06 +0000 |
commit | 410142b3c887b662e54fa2de8b6e5ccb9c32e5ce (patch) | |
tree | a246021c56644423d3167061613a0a1e1c9b6eca /lib/libc/gen/statvfs.3 | |
parent | 2068db5ce3fd5591f587c184b5e88f45b8f8328d (diff) |
flag constant values should be UL, spotted by deraadt@
Diffstat (limited to 'lib/libc/gen/statvfs.3')
-rw-r--r-- | lib/libc/gen/statvfs.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/statvfs.3 b/lib/libc/gen/statvfs.3 index 31863e81851..5d76544188a 100644 --- a/lib/libc/gen/statvfs.3 +++ b/lib/libc/gen/statvfs.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: statvfs.3,v 1.1 2008/03/22 19:17:51 otto Exp $ +.\" $OpenBSD: statvfs.3,v 1.2 2008/03/22 19:37:05 otto Exp $ .\" $NetBSD: statfs.2,v 1.10 1995/06/29 11:40:48 cgd Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 @@ -67,8 +67,8 @@ struct statvfs { unsigned long f_namemax; /* maximum filename length */ }; -#define ST_RDONLY 0x0001L /* read-only filesystem */ -#define ST_NOSUID 0x0002L /* nosuid flag set */ +#define ST_RDONLY 0x0001UL /* read-only filesystem */ +#define ST_NOSUID 0x0002UL /* nosuid flag set */ .Ed .Pp .Fn fstatvfs |