From 0b8b714fa9d9c9abae99fa4a0f44ba67a318bc0e Mon Sep 17 00:00:00 2001 From: Andrew Gallatin Date: Thu, 29 Mar 2001 02:18:19 +0000 Subject: [PATCH] numdirtybuffers is an int, not a long. --- usr.bin/systat/vmstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/systat/vmstat.c b/usr.bin/systat/vmstat.c index 7779de326b2b..5da93c383e0d 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;