From: Sebastien GODARD Date: Wed, 7 Jun 2017 09:38:41 +0000 (+0200) Subject: iostat: Remove trailing colon following "Device" field name X-Git-Tag: v11.5.7~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=754d68088c1e27d8a19ea8d82b69e3bb479a07ac;p=sysstat iostat: Remove trailing colon following "Device" field name Signed-off-by: Sebastien GODARD --- diff --git a/iostat.c b/iostat.c index cf0b367..97a6efa 100644 --- a/iostat.c +++ b/iostat.c @@ -950,7 +950,7 @@ void write_disk_stat_header(int *fctr, int *tab) if (DISPLAY_EXTENDED(flags)) { /* Extended stats */ - printf("Device: "); + printf("Device "); if (DISPLAY_SHORT_OUTPUT(flags)) { printf(" tps"); if (DISPLAY_MEGABYTES(flags)) { @@ -981,7 +981,7 @@ void write_disk_stat_header(int *fctr, int *tab) } else { /* Basic stats */ - printf("Device: tps"); + printf("Device tps"); if (DISPLAY_KILOBYTES(flags)) { printf(" kB_read/s kB_wrtn/s kB_read kB_wrtn\n"); }