int shift = 0;
/*** hotplug_acclimated ***/
- if (kb_main_total > 9999999) { which = N_txt(AMT_megabyte_txt); shift = 10; }
- if (kb_main_total > 9999999999) { which = N_txt(AMT_gigabyte_txt); shift = 20; }
+ if (kb_main_total > 9999999)
+ { which = N_txt(AMT_megabyte_txt); shift = 10; }
+ if (kb_main_total > 9999999999ull)
+ { which = N_txt(AMT_gigabyte_txt); shift = 20; }
show_special(0, fmtmk(N_unq(MEMORY_lines_fmt)
, which, mkM(total), mkM(used), mkM(free), mkM(buffers)