Blame SOURCES/vmstat-wide-not-wide-enough.patch

a2be1b
diff --git a/vmstat.c b/vmstat.c
a2be1b
index 67515c1..c01351d 100644
a2be1b
--- a/vmstat.c
a2be1b
+++ b/vmstat.c
a2be1b
@@ -187,12 +187,12 @@ static void new_header(void)
a2be1b
 	const char header[] =
a2be1b
 	    "procs -----------memory---------- ---swap-- -----io---- -system-- ------cpu-----\n";
a2be1b
 	const char wide_header[] =
a2be1b
-	    "procs ---------------memory-------------- ---swap-- -----io---- -system-- ------cpu-----\n";
a2be1b
+	    "procs -----------------------memory---------------------- ---swap-- -----io---- -system-- --------cpu--------\n";
a2be1b
 
a2be1b
 	const char format[] =
a2be1b
 	    "%2s %2s %6s %6s %6s %6s %4s %4s %5s %5s %4s %4s %2s %2s %2s %2s %2s\n";
a2be1b
 	const char wide_format[] =
a2be1b
-	    "%2s %2s %8s %8s %8s %8s %4s %4s %5s %5s %4s %4s %2s %2s %2s %2s %2s\n";
a2be1b
+	    "%2s %2s %12s %12s %12s %12s %4s %4s %5s %5s %4s %4s %3s %3s %3s %3s %3s\n";
a2be1b
 
a2be1b
 	printf(w_option ? _(wide_header) : _(header));
a2be1b
 	printf(
a2be1b
@@ -249,7 +249,7 @@ static void new_format(void)
a2be1b
 	const char format[] =
a2be1b
 	    "%2u %2u %6lu %6lu %6lu %6lu %4u %4u %5u %5u %4u %4u %2u %2u %2u %2u %2u\n";
a2be1b
 	const char wide_format[] =
a2be1b
-	    "%2u %2u %8lu %8lu %8lu %8lu %4u %4u %5u %5u %4u %4u %2u %2u %2u %2u %2u\n";
a2be1b
+	    "%2u %2u %12lu %12lu %12lu %12lu %4u %4u %5u %5u %4u %4u %3u %3u %3u %3u %3u\n";
a2be1b
 
a2be1b
 	unsigned int tog = 0;	/* toggle switch for cleaner code */
a2be1b
 	unsigned int i;