aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2011-10-25 14:19:34 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2011-10-25 14:19:34 +0000
commitc66c5230a2d48cc207c4715531b4eca451cb5a6c (patch)
treec7f7a419586157e7451b5dbe9ac78fe044a99c8a /epan/dfilter
parent2d62e550b7f45ce51adae4a1c1ef4b7714ae7d8e (diff)
Fix Coverity CID 432, "Missing Break".
svn path=/trunk/; revision=39564
Diffstat (limited to 'epan/dfilter')
-rw-r--r--epan/dfilter/sttype-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dfilter/sttype-test.c b/epan/dfilter/sttype-test.c
index 54cd1d4c1c..0188d9ca4e 100644
--- a/epan/dfilter/sttype-test.c
+++ b/epan/dfilter/sttype-test.c
@@ -69,7 +69,7 @@ num_operands(test_op_t op)
{
switch(op) {
case TEST_OP_UNINITIALIZED:
- g_assert_not_reached();
+ break;
case TEST_OP_EXISTS:
case TEST_OP_NOT:
return 1;