Kaydet (Commit) cf28ba61 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#705197 Missing break in switch

Change-Id: I3a171be59989b53e1a96f0e4c640142bb8e64321
üst 7b75f9a1
...@@ -110,6 +110,7 @@ control(int counter) ...@@ -110,6 +110,7 @@ control(int counter)
case L_nodebug: tp = "nodebug"; break; case L_nodebug: tp = "nodebug"; break;
#endif #endif
default: hash = L_nogood; default: hash = L_nogood;
/*fall-through*/
case L_nogood: tp = ""; break; case L_nogood: tp = ""; break;
} }
if (!streq(tp, token)) if (!streq(tp, token))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment