From 9f3eaa5002f806908b54c4601bc930d0b0d1ee4f Mon Sep 17 00:00:00 2001 From: thorpej Date: Fri, 6 Dec 2002 03:13:14 +0000 Subject: [PATCH] Remove extra args from a printf. --- usr.bin/systat/iostat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr.bin/systat/iostat.c b/usr.bin/systat/iostat.c index e928d8e7d64f..f25529103d86 100644 --- a/usr.bin/systat/iostat.c +++ b/usr.bin/systat/iostat.c @@ -1,4 +1,4 @@ -/* $NetBSD: iostat.c,v 1.23 2002/11/01 12:47:57 mrg Exp $ */ +/* $NetBSD: iostat.c,v 1.24 2002/12/06 03:13:14 thorpej Exp $ */ /* * Copyright (c) 1980, 1992, 1993 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)iostat.c 8.1 (Berkeley) 6/6/93"; #endif -__RCSID("$NetBSD: iostat.c,v 1.23 2002/11/01 12:47:57 mrg Exp $"); +__RCSID("$NetBSD: iostat.c,v 1.24 2002/12/06 03:13:14 thorpej Exp $"); #endif /* not lint */ #include @@ -179,8 +179,8 @@ barlabels(int row) if (cur.dk_select[i]) { if (row > getmaxy(wnd) - linesperregion) break; - mvwprintw(wnd, row++, 0, "%7.7s kBps|", cur.dk_name[i], - read_write ? ' ' : 'r'); + mvwprintw(wnd, row++, 0, "%7.7s kBps|", + cur.dk_name[i]); mvwaddstr(wnd, row++, 0, " tps|"); if (read_write) { mvwprintw(wnd, row++, 0, " (write) kBps|");