From cf28ba611b467b248cfa57b846c74a40ad41ef98 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 30 May 2014 13:26:19 +0100 Subject: coverity#705197 Missing break in switch Change-Id: I3a171be59989b53e1a96f0e4c640142bb8e64321 --- rsc/source/rscpp/cpp2.c | 1 + 1 file changed, 1 insertion(+) (limited to 'rsc/source/rscpp') diff --git a/rsc/source/rscpp/cpp2.c b/rsc/source/rscpp/cpp2.c index 578052ce2560..b7224ac6c05f 100644 --- a/rsc/source/rscpp/cpp2.c +++ b/rsc/source/rscpp/cpp2.c @@ -110,6 +110,7 @@ control(int counter) case L_nodebug: tp = "nodebug"; break; #endif default: hash = L_nogood; + /*fall-through*/ case L_nogood: tp = ""; break; } if (!streq(tp, token)) -- cgit