diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-09 00:41:06 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-08-09 00:41:06 (GMT) |
commit | 41158497e887d2d9cd925574f349fd3e65402644 (patch) | |
tree | 947605c94adb74ae12cc83440fb22ab6f90c8b08 /plugins/utils.c | |
parent | 8aee8dd8b4e64a9b023334e0c36761bf75f99306 (diff) | |
download | monitoring-plugins-41158497e887d2d9cd925574f349fd3e65402644.tar.gz |
more pedantic compiler warnings
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@668 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/utils.c')
-rw-r--r-- | plugins/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/utils.c b/plugins/utils.c index aed03c4..c2261dc 100644 --- a/plugins/utils.c +++ b/plugins/utils.c | |||
@@ -54,7 +54,7 @@ max_state (int a, int b) | |||
54 | 54 | ||
55 | void usage (char *msg) | 55 | void usage (char *msg) |
56 | { | 56 | { |
57 | printf (msg); | 57 | printf ("%s", msg); |
58 | print_usage (); | 58 | print_usage (); |
59 | exit (STATE_UNKNOWN); | 59 | exit (STATE_UNKNOWN); |
60 | } | 60 | } |