Code

debian bts #296278:
[nagiosplug.git] / plugins / check_load.c
index 21627feecf6a9e520098efa5bd8ecdb3bd59edc4..191f6d308b38043883cd6f836ab98ce58faf939b 100644 (file)
@@ -137,7 +137,7 @@ main (int argc, char **argv)
                printf (_("Could not open stderr for %s\n"), PATH_TO_UPTIME);
        }
        fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_process);
-       sscanf (input_buffer, "%*[^l]load average: %f, %f, %f", &la1, &la5, &la15);
+       sscanf (input_buffer, "%*[^l]load average: %lf, %lf, %lf", &la1, &la5, &la15);
 
        result = spclose (child_process);
        if (result) {