From 0dc65376126e65392cc8127cee819669c1966dbe Mon Sep 17 00:00:00 2001 From: Sven Nierlein Date: Mon, 7 Nov 2016 23:39:04 +0100 Subject: fix superfluous argument to printf (#fixes 1308) Signed-off-by: Sven Nierlein diff --git a/plugins/check_load.c b/plugins/check_load.c index a96435f..b1cc498 100644 --- a/plugins/check_load.c +++ b/plugins/check_load.c @@ -160,7 +160,7 @@ main (int argc, char **argv) sscanf (input_buffer, "%*[^l]load averages: %lf, %lf, %lf", &la1, &la5, &la15); } else { - printf (_("could not parse load from uptime: %s\n"), result, PATH_TO_UPTIME); + printf (_("could not parse load from uptime %s: %s\n"), PATH_TO_UPTIME, result); return STATE_UNKNOWN; } -- cgit v0.10-9-g596f