diff options
author | maxim <maxim@FreeBSD.org> | 2007-12-16 07:18:59 +0000 |
---|---|---|
committer | maxim <maxim@FreeBSD.org> | 2007-12-16 07:18:59 +0000 |
commit | 16a9786df8e1272ee1476b4cf4c20870dd028e05 (patch) | |
tree | d7d8306ffe1dcfd746d2dd15bab6fd291e85baca /usr.sbin/iostat/iostat.c | |
parent | 60377b3fbd3ef0aadb9ce81f7850c10fe7a4c654 (diff) | |
download | FreeBSD-src-16a9786df8e1272ee1476b4cf4c20870dd028e05.zip FreeBSD-src-16a9786df8e1272ee1476b4cf4c20870dd028e05.tar.gz |
o Get missed "%" in output back.
Submitted by: sem
MFC after: 1 week
Diffstat (limited to 'usr.sbin/iostat/iostat.c')
-rw-r--r-- | usr.sbin/iostat/iostat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/iostat/iostat.c b/usr.sbin/iostat/iostat.c index 111d927..e54e29c 100644 --- a/usr.sbin/iostat/iostat.c +++ b/usr.sbin/iostat/iostat.c @@ -676,11 +676,11 @@ devstats(int perf_select, long double etime, int havelast) printf("\n"); if (Iflag == 0) printf( - "device r/s w/s kr/s kw/s wait svc_t %b " + "device r/s w/s kr/s kw/s wait svc_t %%b " ); else printf( - "device r/i w/i kr/i kw/i wait svc_t %b " + "device r/i w/i kr/i kw/i wait svc_t %%b " ); if (Tflag > 0) printf("tin tout "); |