summaryrefslogtreecommitdiffstats
path: root/plugins/check_swap.c
diff options
context:
space:
mode:
authorRincewindsHat <12514511+RincewindsHat@users.noreply.github.com>2021-11-25 08:03:21 (GMT)
committerGitHub <noreply@github.com>2021-11-25 08:03:21 (GMT)
commit36415f0c3ecbed76f3e7c161885704f964f2e385 (patch)
treea9114caaefaa1f25ccae58b0a49d3a4f7b0d1433 /plugins/check_swap.c
parentc39de8869e5352a5503607258996b8461ff27c14 (diff)
parentd28bab4dbdf5b5be37b70164dd4a6d55e0ca9380 (diff)
downloadmonitoring-plugins-36415f0c3ecbed76f3e7c161885704f964f2e385.tar.gz
Merge pull request #1729 from RincewindsHat/fix_QL_problems
Fix some QL problems
Diffstat (limited to 'plugins/check_swap.c')
-rw-r--r--plugins/check_swap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_swap.c b/plugins/check_swap.c
index 7f71bf7..7da26cf 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 [%lu (%d%%)]", status, dskfree_mb, 100 - percent);
146 } 146 }
147 } 147 }
148 /* 148 /*