Use correct format string.

Submitted by:   ssouhlal
This commit is contained in:
Lukas Ertl 2004-09-17 17:08:44 +00:00
parent 5a941e4fac
commit 0a16dedc07
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=135387

View File

@ -384,7 +384,7 @@ S_vmtotal(int l2, void *p)
printf("Shared Real Memory:\t(Total: %lldK Active: %lldK)\n",
(long long)v->t_rmshr * pageKilo,
(long long)v->t_armshr * pageKilo);
printf("Free Memory Pages:\t%ldK\n", (long long)v->t_free * pageKilo);
printf("Free Memory Pages:\t%lldK\n", (long long)v->t_free * pageKilo);
return (0);
}