diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-09-20 16:22:55 (GMT) |
---|---|---|
committer | Lorenz Kästle <lorenz.kaestle@netways.de> | 2023-09-21 10:09:10 (GMT) |
commit | 3e8fdf9b35ab750e3fe964ce289bbbdaffb3b800 (patch) | |
tree | c261a174b4110300cf3420ff31da02917e8ce147 /plugins | |
parent | 7e81cb3c1fb4123bd4d423b2c9e86538dec19e39 (diff) | |
download | monitoring-plugins-3e8fdf9b35ab750e3fe964ce289bbbdaffb3b800.tar.gz |
check_disk: Fix printf format string
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_disk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 05e5502..6cb4cb2 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
@@ -1027,7 +1027,7 @@ void | |||
1027 | print_usage (void) | 1027 | print_usage (void) |
1028 | { | 1028 | { |
1029 | printf ("%s\n", _("Usage:")); | 1029 | printf ("%s\n", _("Usage:")); |
1030 | printf (" %s {-w absolute_limit |-w percentage_limit% | -W inode_percentage_limit } {-c absolute_limit|-c percentage_limit% | -K inode_percentage_limit } {-p path | -x device}\n", progname); | 1030 | printf (" %s {-w absolute_limit |-w percentage_limit%% | -W inode_percentage_limit } {-c absolute_limit|-c percentage_limit%% | -K inode_percentage_limit } {-p path | -x device}\n", progname); |
1031 | printf ("[-C] [-E] [-e] [-f] [-g group ] [-k] [-l] [-M] [-m] [-R path ] [-r path ]\n"); | 1031 | printf ("[-C] [-E] [-e] [-f] [-g group ] [-k] [-l] [-M] [-m] [-R path ] [-r path ]\n"); |
1032 | printf ("[-t timeout] [-u unit] [-v] [-X type] [-N type]\n"); | 1032 | printf ("[-t timeout] [-u unit] [-v] [-X type] [-N type]\n"); |
1033 | } | 1033 | } |