mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use correct format string.
Submitted by: ssouhlal
This commit is contained in:
parent
5a941e4fac
commit
0a16dedc07
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue