Description: Ensure format strings are literals
Author: Stephen Kitt <skitt@debian.org>

--- a/procinfo.cpp
+++ b/procinfo.cpp
@@ -211,7 +211,7 @@
 	try {
 		rows = getNetStats(perSecond, showTotals, skipIfaces, elapsed);
 	} catch (string exceptionMessage) {
-		print(exceptionMessage.c_str());
+		print("%s", exceptionMessage.c_str());
 	}
 	print("\n");
 	prettyPrint(rows, rowWidth, true);
