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

PDP11: Fix Coverity identified issue in debug format statement

This commit is contained in:
Mark Pizzolato 2022-03-10 17:08:15 -08:00
parent 93e86f31f0
commit c035be465c

View File

@ -3223,7 +3223,7 @@ vt11_cycle(int us, int slowdown)
DEBUGF("Load Status C");
if (TESTBIT(inst,9)) {
char_rotate = TESTBIT(inst,8);
DEBUGF(" char_rotate=d", (int)char_rotate);
DEBUGF(" char_rotate=%d", (int)char_rotate);
}
if (TESTBIT(inst,7)) {
cs_index = GETFIELD(inst,6,5); /* 0, 1, 2, 3 */