aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h223.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-02-07 15:44:45 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-02-07 15:44:45 +0000
commit652f92e006ed5e0fefafd5f6e0f58841cd6e718e (patch)
treeffc752144b791b42bccb7d56a29504c9ebed0d65 /epan/dissectors/packet-h223.c
parent24ad9bce0bc0876a0b560308e84c5e5706a335d2 (diff)
Removed even more "statement not reached" warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24286 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h223.c')
-rw-r--r--epan/dissectors/packet-h223.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/dissectors/packet-h223.c b/epan/dissectors/packet-h223.c
index 2cd86d7fe4..91d4986551 100644
--- a/epan/dissectors/packet-h223.c
+++ b/epan/dissectors/packet-h223.c
@@ -183,7 +183,7 @@ static gint circuit_chain_equal(gconstpointer v, gconstpointer w)
gint result;
result = ( v1->call == v2->call &&
v1->vc == v2 -> vc );
- return result;;
+ return result;
}
static guint circuit_chain_hash (gconstpointer v)
@@ -1142,7 +1142,6 @@ static gboolean h223_mux_check_hdlc(int h223_level, guint32 nbytes, guint32 tail
/* level 0 isn't byte-aligned, so is a complete pain to implement */
DISSECTOR_ASSERT_NOT_REACHED();
return FALSE;
- break;
case 1:
masked = tail_buf & 0xffff;