Use correct format string.

Submitted by:   ssouhlal
This commit is contained in:
le 2004-09-17 17:08:44 +00:00
parent 249af8005f
commit efd0dee0a5

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);
}