1
0
mirror of https://github.com/simh/simh.git synced 2026-01-11 23:52:58 +00:00

3B2: Avoid compiler warning when building 64bit targets

This commit is contained in:
Mark Pizzolato 2023-12-30 13:33:04 -10:00
parent d8e0e04dc8
commit 6a7cfce9fd

View File

@ -185,16 +185,16 @@ uint32 dmac_read(uint32 pa, size_t size)
break;
default:
sim_debug(READ_MSG, &dmac_dev,
"DMAC READ %lu B @ %08x\n",
size, pa);
"DMAC READ %u B @ %08x\n",
(unsigned int)size, pa);
data = 0;
}
return data;
default:
sim_debug(READ_MSG, &dmac_dev,
"[BASE: %08x] DMAC READ %lu B @ %08x\n",
base, size, pa);
"[BASE: %08x] DMAC READ %u B @ %08x\n",
base, (unsigned int)size, pa);
return 0;
}
}