a2be1b
diff -Naur procps-ng-3.3.9.orig/vmstat.c procps-ng-3.3.9/vmstat.c
a2be1b
--- procps-ng-3.3.9.orig/vmstat.c	2014-02-05 12:55:02.000000000 +0100
a2be1b
+++ procps-ng-3.3.9/vmstat.c	2014-02-05 16:58:35.786000000 +0100
a2be1b
@@ -204,10 +204,10 @@
a2be1b
 	    "%2s %2s %12s %12s %12s %12s %4s %4s %5s %5s %4s %4s %3s %3s %3s %3s %3s";
a2be1b
 
a2be1b
 
a2be1b
-	printf(w_option ? wide_header : header);
a2be1b
+	printf("%s", w_option ? wide_header : header);
a2be1b
 
a2be1b
 	if (t_option) {
a2be1b
-		printf(timestamp_header);
a2be1b
+		printf("%s", timestamp_header);
a2be1b
 	}
a2be1b
 
a2be1b
 	printf("\n");
a2be1b
@@ -528,10 +528,10 @@
a2be1b
 	const char wide_format[] =
a2be1b
 	    "%5s %9s %9s %11s %11s %9s %9s %11s %11s %7s %7s";
a2be1b
 
a2be1b
-	printf(w_option ? wide_header : header);
a2be1b
+	printf("%s", w_option ? wide_header : header);
a2be1b
 
a2be1b
 	if (t_option) {
a2be1b
-		printf(timestamp_header);
a2be1b
+		printf("%s", timestamp_header);
a2be1b
 	}
a2be1b
 
a2be1b
 	printf("\n");