Florian Vichot schrieb:
Gerrit Slomma a écrit :
> if (cell == -1)
> - vshPrint(ctl, "%s: %llu kB\n", _("Total"), memory);
> + if (memory < 10*1024*1204*1024)
If I may, it should probably read "1024", not "1204" here.
and here.
> + {
> + vshPrint(ctl, "%d: %.0f MB\n", cell,
> (float)memory/1024/1024);
Florian
Yes you are right.