From 0586d34f16b185183d0b2ed2d3a7f512cc885a8b Mon Sep 17 00:00:00 2001 From: Mark Pizzolato <mark@infocomm.com> Date: Thu, 27 Apr 2017 02:11:52 -0700 Subject: [PATCH] PDP4, PDP7, PDP9: Add fall through comment (Coverity) --- PDP18B/pdp18b_dt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PDP18B/pdp18b_dt.c b/PDP18B/pdp18b_dt.c index 4dabbdd1..264cbf91 100644 --- a/PDP18B/pdp18b_dt.c +++ b/PDP18B/pdp18b_dt.c @@ -1053,7 +1053,8 @@ switch (fnc) { /* at speed, check fnc * fprintf (sim_deb, ">>DT%d: writing block %d %s%s\n", unum, blk, (dir? "backward": "forward"), ((dtsa & DTA_MODE)? " continuous": " ")); - dt_substate = 0; /* fall through */ + dt_substate = 0; + /* fall through */ case 0: /* normal write */ M[DT_WC] = (M[DT_WC] + 1) & DMASK; /* incr WC, CA */ M[DT_CA] = (M[DT_CA] + 1) & DMASK;