From c035be465c2ae20b465d38083d001c8ede58f7f0 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 10 Mar 2022 17:08:15 -0800 Subject: [PATCH] PDP11: Fix Coverity identified issue in debug format statement --- display/vt11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display/vt11.c b/display/vt11.c index cfc24444..1b33a23e 100644 --- a/display/vt11.c +++ b/display/vt11.c @@ -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 */