mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-20 00:10:09 -05:00
fix superfluous argument to printf (#fixes 1308)
Signed-off-by: Sven Nierlein <sven@nierlein.de>
This commit is contained in:
parent
0bf64b356c
commit
0dc6537612
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue