diff options
author | gallatin <gallatin@FreeBSD.org> | 2001-03-29 02:18:19 +0000 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2001-03-29 02:18:19 +0000 |
commit | 5fb024dfe1d6646bf928ec35030aa57bd336dec7 (patch) | |
tree | 4797c2d089e136f330935e149beef3e2f21cc298 | |
parent | 617435415d152d68727c97b8635bcc742de507bf (diff) | |
download | FreeBSD-src-5fb024dfe1d6646bf928ec35030aa57bd336dec7.zip FreeBSD-src-5fb024dfe1d6646bf928ec35030aa57bd336dec7.tar.gz |
numdirtybuffers is an int, not a long.
-rw-r--r-- | usr.bin/systat/vmstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/systat/vmstat.c b/usr.bin/systat/vmstat.c index 7779de3..5da93c3 100644 --- a/usr.bin/systat/vmstat.c +++ b/usr.bin/systat/vmstat.c @@ -119,7 +119,7 @@ static struct Info { int desiredvnodes; long numvnodes; long freevnodes; - long numdirtybuffers; + int numdirtybuffers; } s, s1, s2, z; struct statinfo cur, last, run; |