diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2021-11-24 14:25:42 +0100 |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2021-11-24 14:25:42 +0100 |
commit | e2f24a5af3fe407035c8c57f539148f2d694973b (patch) | |
tree | 5c0037b638001cfad26a31af281fad50f6540147 /plugins/check_swap.c | |
parent | 0e311b77d93df4b97c5f8cff73fea74a442ed4bc (diff) | |
download | monitoring-plugins-e2f24a5af3fe407035c8c57f539148f2d694973b.tar.gz |
Fix CodeQL checks
Diffstat (limited to 'plugins/check_swap.c')
-rw-r--r-- | plugins/check_swap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_swap.c b/plugins/check_swap.c index 7f71bf7e..00bdcdd8 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c | |||
@@ -142,7 +142,7 @@ main (int argc, char **argv) | |||
142 | percent = 100 * (((double) dskused_mb) / ((double) dsktotal_mb)); | 142 | percent = 100 * (((double) dskused_mb) / ((double) dsktotal_mb)); |
143 | result = max_state (result, check_swap (dskfree_mb, dsktotal_mb)); | 143 | result = max_state (result, check_swap (dskfree_mb, dsktotal_mb)); |
144 | if (verbose) | 144 | if (verbose) |
145 | xasprintf (&status, "%s [%.0f (%d%%)]", status, dskfree_mb, 100 - percent); | 145 | xasprintf (&status, "%s [%ul (%d%%)]", status, dskfree_mb, 100 - percent); |
146 | } | 146 | } |
147 | } | 147 | } |
148 | /* | 148 | /* |