diff options
-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 4e17163c..ba353bc0 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c @@ -194,7 +194,7 @@ main (int argc, char **argv) dskfree = dskfree / conv_factor; # endif if (verbose >= 3) - printf (_("total=%d, free=%d\n"), dsktotal, dskfree); + printf (_("total=%llu, free=%llu\n"), dsktotal, dskfree); dskused = dsktotal - dskfree; total_swap += dsktotal; |