Bug Fix [ 1024735 ] check_swap providing inaccurate swap information on Sol6

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@999 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
Benoit Mortier 2004-12-04 00:23:41 +00:00
parent 30a4266a3a
commit b467ed427c

View file

@ -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;