diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-06-21 08:27:08 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-06-21 08:27:08 +0000 |
commit | 59ede81c159ef2e4b202438542282106aaeb9c45 (patch) | |
tree | 080957f7325481c59620c23e5648f667b305d92a /sys | |
parent | db50d402170d79e6d69f441b54681928acb24b3d (diff) |
f_bavail can go negative when minfree is passed
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mount.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h index e80d6c25d39..efda04630d1 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.h,v 1.29 1999/05/31 17:34:52 millert Exp $ */ +/* $OpenBSD: mount.h,v 1.30 1999/06/21 08:27:07 niklas Exp $ */ /* $NetBSD: mount.h,v 1.48 1996/02/18 11:55:47 fvdl Exp $ */ /* @@ -258,7 +258,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 */ |