summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-10-18 17:28:56 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-10-18 17:28:56 +0000
commit9e4f7b73b1d00cc24e759f6ce4d4316c30430335 (patch)
tree32a7a34d61072bf5b593b72f19d97df811ae4398
parent0c04730b6718e2a9cd357673c6601fb978d07256 (diff)
irq count field widened
-rw-r--r--usr.bin/vmstat/vmstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c
index 50f34de99df..d876dec23e8 100644
--- a/usr.bin/vmstat/vmstat.c
+++ b/usr.bin/vmstat/vmstat.c
@@ -740,7 +740,7 @@ dointr()
inttotal += ivp->iv_cnt;
}
}
- (void)printf("Total %8ld %8ld\n",
+ (void)printf("Total %10ld %8ld\n",
inttotal, inttotal / uptime);
}
}