summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-h223.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-02-07 15:44:45 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-02-07 15:44:45 +0000
commit28ae535b009c9301e885a4e17bfa55861288f2f9 (patch)
treeffc752144b791b42bccb7d56a29504c9ebed0d65 /epan/dissectors/packet-h223.c
parent36431783b7bb21c867080639724d73c929b612ec (diff)
downloadwireshark-28ae535b009c9301e885a4e17bfa55861288f2f9.tar.gz
Removed even more "statement not reached" warnings.
svn path=/trunk/; revision=24286
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;