clean up compiler warnings

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@766 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
Karl DeBisschop 2003-11-12 05:41:28 +00:00
parent a28ef8e438
commit 7626b3413d
2 changed files with 15 additions and 15 deletions

View file

@ -175,18 +175,18 @@ main (int argc, char **argv)
result = STATE_WARNING;
}
asprintf (&error_message, _("%s. In = %0.1f %s, %s. Out = %0.1f %s\n"),
asprintf (&error_message, _("%s. In = %0.1f %s, %s. Out = %0.1f %s|%s %s\n"),
(use_average == TRUE) ? _("Avg") : _("Max"), adjusted_incoming_rate,
incoming_speed_rating, (use_average == TRUE) ? _("Avg") : _("Max"),
adjusted_outgoing_rate, outgoing_speed_rating,
perfdata("in", adjusted_incoming_rate, incoming_speed_rating,
incoming_warning_threshold, incoming_warning_threshold,
incoming_critical_threshold, incoming_critical_threshold,
TRUE, 0, TRUE, incoming_speed_rating),
perfdata("in", adjusted_outgoing_rate, outgoing_speed_rating,
outgoing_warning_threshold, outgoing_warning_threshold,
outgoing_critical_threshold, outgoing_critical_threshold,
TRUE, 0, TRUE, outgoing_speed_rating));
perfdata("in", (long) adjusted_incoming_rate, incoming_speed_rating,
(int) incoming_warning_threshold, (long) incoming_warning_threshold,
(int) incoming_critical_threshold, (long) incoming_critical_threshold,
TRUE, 0, TRUE, (long) incoming_speed_rating),
perfdata("in", (long) adjusted_outgoing_rate, outgoing_speed_rating,
(int) outgoing_warning_threshold, (long) outgoing_warning_threshold,
(int) outgoing_critical_threshold, (long) outgoing_critical_threshold,
TRUE, 0, TRUE, (long) outgoing_speed_rating));
printf (_("Traffic %s - %s\n"), state_text(result), error_message);

View file

@ -224,13 +224,13 @@ main (int argc, char **argv)
asprintf (&status, _(" %d%% free (%lu MB out of %lu MB)%s"),
(100 - percent_used), free_swap, total_swap, status);
asprintf (&perf, "%s", perfdata ("swap", free_swap, "MB",
TRUE, max (warn_size/1024, warn_percent/100.0*total_swap),
TRUE, max (crit_size/1024, crit_percent/100.0*total_swap),
asprintf (&perf, "%s", perfdata ("swap", (long) free_swap, "MB",
TRUE, (long) max (warn_size/1024, warn_percent/100.0*total_swap),
TRUE, (long) max (crit_size/1024, crit_percent/100.0*total_swap),
TRUE, 0,
TRUE, total_swap));
die (result, "SWAP %s:%s |%s\n", state_text (result), status, perf);
return STATE_UNKNOWN;
TRUE, (long) total_swap));
printf ("SWAP %s:%s |%s\n", state_text (result), status, perf);
return result;
}