mirror of
https://github.com/simh/simh.git
synced 2026-05-01 13:56:02 +00:00
PDP11: Fix Coverity identified issue in debug format statement
This commit is contained in:
@@ -3223,7 +3223,7 @@ vt11_cycle(int us, int slowdown)
|
|||||||
DEBUGF("Load Status C");
|
DEBUGF("Load Status C");
|
||||||
if (TESTBIT(inst,9)) {
|
if (TESTBIT(inst,9)) {
|
||||||
char_rotate = TESTBIT(inst,8);
|
char_rotate = TESTBIT(inst,8);
|
||||||
DEBUGF(" char_rotate=d", (int)char_rotate);
|
DEBUGF(" char_rotate=%d", (int)char_rotate);
|
||||||
}
|
}
|
||||||
if (TESTBIT(inst,7)) {
|
if (TESTBIT(inst,7)) {
|
||||||
cs_index = GETFIELD(inst,6,5); /* 0, 1, 2, 3 */
|
cs_index = GETFIELD(inst,6,5); /* 0, 1, 2, 3 */
|
||||||
|
|||||||
Reference in New Issue
Block a user