diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2010-04-22 08:57:14 -0400 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2010-04-22 08:57:14 -0400 |
commit | eaf3cb27f4b5bae479014a34c7decd3feedcf8fd (patch) | |
tree | 515066ab7d7fc447b98efafdce5705d2502ffdf6 /plugins/check_real.c | |
parent | a46df940019ab6cf2b5c176e968bfdb693ea607c (diff) | |
download | monitoring-plugins-eaf3cb27f4b5bae479014a34c7decd3feedcf8fd.tar.gz |
Add newline after "Usage:" in --help
Diffstat (limited to 'plugins/check_real.c')
-rw-r--r-- | plugins/check_real.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_real.c b/plugins/check_real.c index 1f8ae429..d67e1904 100644 --- a/plugins/check_real.c +++ b/plugins/check_real.c @@ -448,6 +448,6 @@ print_help (void) void print_usage (void) { - printf (_("Usage:")); + printf ("%s\n", _("Usage:")); printf ("%s -H host [-e expect] [-p port] [-w warn] [-c crit] [-t timeout] [-v]\n", progname); } |