diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-12-31 03:43:25 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-12-31 03:43:25 +0000 |
commit | 36a3d6e892496cdffd0ea163fb82749598f52537 (patch) | |
tree | cbb354af4968b9a0bc65ac2ce12abe7086bd8e85 /lib/libc/sys | |
parent | 34322cc7356e98248f73e96374c85924395e9164 (diff) |
f_bavail is signed (sync with sys/mount.h)
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/getfsstat.2 | 4 | ||||
-rw-r--r-- | lib/libc/sys/statfs.2 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/sys/getfsstat.2 b/lib/libc/sys/getfsstat.2 index dc241f9764d..ef0285afa62 100644 --- a/lib/libc/sys/getfsstat.2 +++ b/lib/libc/sys/getfsstat.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getfsstat.2,v 1.10 1999/06/29 14:09:58 aaron Exp $ +.\" $OpenBSD: getfsstat.2,v 1.11 1999/12/31 03:43:23 millert Exp $ .\" $NetBSD: getfsstat.2,v 1.6 1995/06/29 11:40:44 cgd Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 @@ -64,7 +64,7 @@ struct statfs { u_int32_t f_iosize; /* optimal transfer block size */ u_int32_t f_blocks; /* total data blocks in file system */ u_int32_t f_bfree; /* free blocks in fs */ - u_int32_t f_bavail; /* free blocks avail to non-superuser */ + int32_t f_bavail; /* free blocks avail to non-superuser */ u_int32_t f_files; /* total file nodes in file system */ u_int32_t f_ffree; /* free file nodes in fs */ fsid_t f_fsid; /* file system id */ diff --git a/lib/libc/sys/statfs.2 b/lib/libc/sys/statfs.2 index b09b973db94..f579c674ef6 100644 --- a/lib/libc/sys/statfs.2 +++ b/lib/libc/sys/statfs.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: statfs.2,v 1.11 1999/06/29 14:10:25 aaron Exp $ +.\" $OpenBSD: statfs.2,v 1.12 1999/12/31 03:43:24 millert Exp $ .\" $NetBSD: statfs.2,v 1.10 1995/06/29 11:40:48 cgd Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 @@ -68,7 +68,7 @@ struct statfs { u_int32_t f_iosize; /* optimal transfer block size */ u_int32_t f_blocks; /* total data blocks in file system */ u_int32_t f_bfree; /* free blocks in fs */ - u_int32_t f_bavail; /* free blocks avail to non-superuser */ + int32_t f_bavail; /* free blocks avail to non-superuser */ u_int32_t f_files; /* total file nodes in file system */ u_int32_t f_ffree; /* free file nodes in fs */ fsid_t f_fsid; /* file system id */ |