diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2021-11-24 19:02:17 +0100 |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2021-11-24 19:02:17 +0100 |
commit | d28bab4dbdf5b5be37b70164dd4a6d55e0ca9380 (patch) | |
tree | 2e64165e1a67f18df0cdfe285954edfbb60068e8 /plugins/check_swap.c | |
parent | 40d4e8a057a77e357c26d701c5fd304b51787b93 (diff) | |
download | monitoring-plugins-d28bab4dbdf5b5be37b70164dd4a6d55e0ca9380.tar.gz |
More wrong printf formatting
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 00bdcdd8..7da26cfc 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c @@ -142,7 +142,7 @@ main (int argc, char **argv) percent = 100 * (((double) dskused_mb) / ((double) dsktotal_mb)); result = max_state (result, check_swap (dskfree_mb, dsktotal_mb)); if (verbose) - xasprintf (&status, "%s [%ul (%d%%)]", status, dskfree_mb, 100 - percent); + xasprintf (&status, "%s [%lu (%d%%)]", status, dskfree_mb, 100 - percent); } } /* |