aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/Makefile.common4
-rw-r--r--epan/dissectors/packet-h248_3gpp.c4
-rw-r--r--epan/dissectors/packet-h263.c6
3 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/Makefile.common b/epan/dissectors/Makefile.common
index 60e256f209..d91dc9b216 100644
--- a/epan/dissectors/Makefile.common
+++ b/epan/dissectors/Makefile.common
@@ -397,10 +397,12 @@ CLEAN_DISSECTOR_SRC = \
packet-h221_nonstd.c \
packet-h248_annex_c.c \
packet-h248_annex_e.c \
+ packet-h248_3gpp.c \
packet-h248_7.c \
packet-h248_10.c \
packet-h248_q1950.c \
packet-h261.c \
+ packet-h263.c \
packet-hci_h4.c \
packet-hclnfsd.c \
packet-hpext.c \
@@ -738,8 +740,6 @@ DISSECTOR_SRC = \
packet-ber.c \
packet-cops.c \
packet-diameter.c \
- packet-h248_3gpp.c \
- packet-h263.c \
packet-homeplug.c \
packet-isup.c \
packet-k12.c \
diff --git a/epan/dissectors/packet-h248_3gpp.c b/epan/dissectors/packet-h248_3gpp.c
index 8387b72d07..2044b86fca 100644
--- a/epan/dissectors/packet-h248_3gpp.c
+++ b/epan/dissectors/packet-h248_3gpp.c
@@ -279,7 +279,7 @@ static gint ett_h248_3GTFO_codec_list = -1;
static gint ett_h248_3GTFO_codec = -1;
-static void dissect_3GTFO_codec_mode(proto_tree* tree, tvbuff_t* tvb, packet_info* pinfo, int hfid, h248_curr_info_t* cu, void* ignored _U_) {
+static void dissect_3GTFO_codec_mode(proto_tree* tree, tvbuff_t* tvb, packet_info* pinfo, int hfid, h248_curr_info_t* cu _U_, void* ignored _U_) {
tvbuff_t* sub_tvb = NULL;
gint8 class;
gboolean pc;
@@ -301,7 +301,7 @@ static void dissect_3GTFO_codec_mode(proto_tree* tree, tvbuff_t* tvb, packet_inf
}
-static void dissect_3GTFO_codec_list(proto_tree* tree, tvbuff_t* tvb, packet_info* pinfo, int hfid, h248_curr_info_t* cu, void* ignored _U_) {
+static void dissect_3GTFO_codec_list(proto_tree* tree, tvbuff_t* tvb, packet_info* pinfo, int hfid, h248_curr_info_t* cu _U_, void* ignored _U_) {
tvbuff_t* sub_tvb = NULL;
gint8 class;
gboolean pc;
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{