diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-18 18:58:18 (GMT) |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-18 18:58:18 (GMT) |
commit | 0722dbfb8ac7e2bd97bc134567f8ee9d5fa038de (patch) | |
tree | 7b1dc706e3e1d40b35ec306b9bc73933b93b7e3d /plugins/check_swap.c | |
parent | 163ad151b91cafe6a0f06cb4f0583a97166b0614 (diff) | |
download | monitoring-plugins-0722dbfb8ac7e2bd97bc134567f8ee9d5fa038de.tar.gz |
check_swap: Use C99 booleans
Diffstat (limited to 'plugins/check_swap.c')
-rw-r--r-- | plugins/check_swap.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/check_swap.c b/plugins/check_swap.c index cd965e3..fddd93f 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c | |||
@@ -65,7 +65,7 @@ void print_help (void); | |||
65 | threshold_t warn; | 65 | threshold_t warn; |
66 | threshold_t crit; | 66 | threshold_t crit; |
67 | int verbose; | 67 | int verbose; |
68 | int allswaps; | 68 | bool allswaps = false; |
69 | int no_swap_state = STATE_CRITICAL; | 69 | int no_swap_state = STATE_CRITICAL; |
70 | 70 | ||
71 | int | 71 | int |
@@ -383,10 +383,10 @@ main (int argc, char **argv) | |||
383 | if (crit.is_percentage) crit_print = crit.value * (total_swap_mb *1024 *1024/100); | 383 | if (crit.is_percentage) crit_print = crit.value * (total_swap_mb *1024 *1024/100); |
384 | 384 | ||
385 | puts (perfdata_uint64 ("swap", free_swap_mb *1024 *1024, "B", | 385 | puts (perfdata_uint64 ("swap", free_swap_mb *1024 *1024, "B", |
386 | TRUE, warn_print, | 386 | true, warn_print, |
387 | TRUE, crit_print, | 387 | true, crit_print, |
388 | TRUE, 0, | 388 | true, 0, |
389 | TRUE, (long) total_swap_mb * 1024 * 1024)); | 389 | true, (long) total_swap_mb * 1024 * 1024)); |
390 | 390 | ||
391 | return result; | 391 | return result; |
392 | } | 392 | } |
@@ -514,7 +514,7 @@ process_arguments (int argc, char **argv) | |||
514 | } | 514 | } |
515 | } | 515 | } |
516 | case 'a': /* all swap */ | 516 | case 'a': /* all swap */ |
517 | allswaps = TRUE; | 517 | allswaps = true; |
518 | break; | 518 | break; |
519 | case 'n': | 519 | case 'n': |
520 | if ((no_swap_state = mp_translate_state(optarg)) == ERROR) { | 520 | if ((no_swap_state = mp_translate_state(optarg)) == ERROR) { |