aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h263.c
diff options
context:
space:
mode:
authorstandel <standel@f5534014-38df-0310-8fa8-9805f1628bb7>2007-04-13 15:25:33 +0000
committerstandel <standel@f5534014-38df-0310-8fa8-9805f1628bb7>2007-04-13 15:25:33 +0000
commitee7035cb3ed2438c5e8e3a16ead76355d1dbfa57 (patch)
tree22a06003f85ac257216dc1fa887e648f8622d857 /epan/dissectors/packet-h263.c
parente8a4df3d7b454fce4c1e41dd11d19f4c627cca83 (diff)
fix some gcc warnings and put dissectors in CLEAN_DISSECTOR_SRC
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21410 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h263.c')
-rw-r--r--epan/dissectors/packet-h263.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-h263.c b/epan/dissectors/packet-h263.c
index f833676e5b..cb187cb191 100644
--- a/epan/dissectors/packet-h263.c
+++ b/epan/dissectors/packet-h263.c
@@ -597,7 +597,7 @@ dissect_h263_macroblock_layer( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tr
static int
-dissect_h263_group_of_blocks_layer( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint offset, gboolean is_rfc4626)
+dissect_h263_group_of_blocks_layer( tvbuff_t *tvb, proto_tree *tree, gint offset, gboolean is_rfc4626)
{
unsigned int offset_in_bits = offset << 3;
@@ -1149,7 +1149,7 @@ dissect_h263P( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree )
*/
if ( check_col( pinfo->cinfo, COL_INFO) )
col_append_str( pinfo->cinfo, COL_INFO, "(GBSC) ");
- dissect_h263_group_of_blocks_layer( tvb, pinfo, h263P_data_tree, offset,TRUE);
+ dissect_h263_group_of_blocks_layer( tvb, h263P_data_tree, offset,TRUE);
break;
}
}else{
@@ -1235,7 +1235,7 @@ static void dissect_h263_data( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tr
*/
if ( check_col( pinfo->cinfo, COL_INFO) )
col_append_str( pinfo->cinfo, COL_INFO, "(GBSC) ");
- offset = dissect_h263_group_of_blocks_layer( tvb, pinfo, h263_payload_tree, offset,FALSE);
+ offset = dissect_h263_group_of_blocks_layer( tvb, h263_payload_tree, offset,FALSE);
break;
}
}else{