1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-25 19:57:36 +00:00

Compiler cleanup after v3.9-0 merge

This commit is contained in:
Mark Pizzolato
2012-03-19 16:07:36 -07:00
parent fffad7c20e
commit fabdf73bed
30 changed files with 49 additions and 39 deletions

View File

@@ -344,7 +344,7 @@ if (uptr->capac) {
fprintf (st, "capacity=%dM%s", (uint32) (uptr->capac / ((t_addr) 1000000)), cap_units);
else if (uptr->capac >= (t_addr) 1000)
fprintf (st, "capacity=%dK%s", (uint32) (uptr->capac / ((t_addr) 1000)), cap_units);
else fprintf (st, "capacity=%d%S", (uint32) uptr->capac, cap_units);
else fprintf (st, "capacity=%d%s", (uint32) uptr->capac, cap_units);
}
else fprintf (st, "undefined capacity");
return SCPE_OK;