summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/mips/sibyte/sb_machdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/mips/sibyte/sb_machdep.c b/sys/mips/sibyte/sb_machdep.c
index 9e83426..45f39e8 100644
--- a/sys/mips/sibyte/sb_machdep.c
+++ b/sys/mips/sibyte/sb_machdep.c
@@ -189,11 +189,11 @@ mips_init(void)
("CFE DRAM region is not available?"));
if (bootverbose)
- printf("cfe_enummem: 0x%016jx/%llu.\n", addr, len);
+ printf("cfe_enummem: 0x%016jx/%ju.\n", addr, len);
if (maxmem != 0) {
if (addr >= maxmem) {
- printf("Ignoring %llu bytes of memory at 0x%jx "
+ printf("Ignoring %ju bytes of memory at 0x%jx "
"that is above maxmem %dMB\n",
len, addr,
(int)(maxmem / (1024 * 1024)));
@@ -201,7 +201,7 @@ mips_init(void)
}
if (addr + len > maxmem) {
- printf("Ignoring %llu bytes of memory "
+ printf("Ignoring %ju bytes of memory "
"that is above maxmem %dMB\n",
(addr + len) - maxmem,
(int)(maxmem / (1024 * 1024)));
OpenPOWER on IntegriCloud