diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-11-12 05:41:28 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-11-12 05:41:28 (GMT) |
commit | 7626b3413d1d84aa1768ad47626d044cf3f2791a (patch) | |
tree | 18830e8e2061fdcdb1760d92d772fc96470dbfeb /plugins/check_mrtgtraf.c | |
parent | a28ef8e438f4d45e6f3b1747a247b21d3e8d1482 (diff) | |
download | monitoring-plugins-7626b3413d1d84aa1768ad47626d044cf3f2791a.tar.gz |
clean up compiler warnings
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@766 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_mrtgtraf.c')
-rw-r--r-- | plugins/check_mrtgtraf.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/check_mrtgtraf.c b/plugins/check_mrtgtraf.c index 8cc6ec3..cdb50f3 100644 --- a/plugins/check_mrtgtraf.c +++ b/plugins/check_mrtgtraf.c | |||
@@ -175,18 +175,18 @@ main (int argc, char **argv) | |||
175 | result = STATE_WARNING; | 175 | result = STATE_WARNING; |
176 | } | 176 | } |
177 | 177 | ||
178 | asprintf (&error_message, _("%s. In = %0.1f %s, %s. Out = %0.1f %s\n"), | 178 | asprintf (&error_message, _("%s. In = %0.1f %s, %s. Out = %0.1f %s|%s %s\n"), |
179 | (use_average == TRUE) ? _("Avg") : _("Max"), adjusted_incoming_rate, | 179 | (use_average == TRUE) ? _("Avg") : _("Max"), adjusted_incoming_rate, |
180 | incoming_speed_rating, (use_average == TRUE) ? _("Avg") : _("Max"), | 180 | incoming_speed_rating, (use_average == TRUE) ? _("Avg") : _("Max"), |
181 | adjusted_outgoing_rate, outgoing_speed_rating, | 181 | adjusted_outgoing_rate, outgoing_speed_rating, |
182 | perfdata("in", adjusted_incoming_rate, incoming_speed_rating, | 182 | perfdata("in", (long) adjusted_incoming_rate, incoming_speed_rating, |
183 | incoming_warning_threshold, incoming_warning_threshold, | 183 | (int) incoming_warning_threshold, (long) incoming_warning_threshold, |
184 | incoming_critical_threshold, incoming_critical_threshold, | 184 | (int) incoming_critical_threshold, (long) incoming_critical_threshold, |
185 | TRUE, 0, TRUE, incoming_speed_rating), | 185 | TRUE, 0, TRUE, (long) incoming_speed_rating), |
186 | perfdata("in", adjusted_outgoing_rate, outgoing_speed_rating, | 186 | perfdata("in", (long) adjusted_outgoing_rate, outgoing_speed_rating, |
187 | outgoing_warning_threshold, outgoing_warning_threshold, | 187 | (int) outgoing_warning_threshold, (long) outgoing_warning_threshold, |
188 | outgoing_critical_threshold, outgoing_critical_threshold, | 188 | (int) outgoing_critical_threshold, (long) outgoing_critical_threshold, |
189 | TRUE, 0, TRUE, outgoing_speed_rating)); | 189 | TRUE, 0, TRUE, (long) outgoing_speed_rating)); |
190 | 190 | ||
191 | printf (_("Traffic %s - %s\n"), state_text(result), error_message); | 191 | printf (_("Traffic %s - %s\n"), state_text(result), error_message); |
192 | 192 | ||