aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Lorenz <12514511+RincewindsHat@users.noreply.github.com> 2022-07-25 10:11:43 +0200
committerGravatar GitHub <noreply@github.com> 2022-07-25 10:11:43 +0200
commit3ad5fe9d84138da1451429bfac3b9b4024393d25 (patch)
treea5085f5cf704212135e220cbfcf8d6be3e1d6143 /plugins
parenta01de7b33dee837e7a474d9e00131942d7f177f0 (diff)
downloadmonitoring-plugins-3ad5fe9d84138da1451429bfac3b9b4024393d25.tar.gz
check_swap: Fix unit for total in perfdata (#1779)
* check_swap: Fix unit for total in perfdata * Remove trailing whitespaces
Diffstat (limited to 'plugins')
-rw-r--r--plugins/check_swap.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/check_swap.c b/plugins/check_swap.c
index 6c9418f2..ff58b15f 100644
--- a/plugins/check_swap.c
+++ b/plugins/check_swap.c
@@ -1,30 +1,30 @@
/*****************************************************************************
-*
+*
* Monitoring check_swap plugin
-*
+*
* License: GPL
* Copyright (c) 2000 Karl DeBisschop (kdebisschop@users.sourceforge.net)
* Copyright (c) 2000-2007 Monitoring Plugins Development Team
-*
+*
* Description:
-*
+*
* This file contains the check_swap plugin
-*
-*
+*
+*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
-*
+*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
-*
+*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
-*
-*
+*
+*
*****************************************************************************/
const char *progname = "check_swap";
@@ -389,7 +389,7 @@ main (int argc, char **argv)
TRUE, warn_print,
TRUE, crit_print,
TRUE, 0,
- TRUE, (long) total_swap_mb));
+ TRUE, (long) total_swap_mb * 1024 * 1024));
return result;
}