From 1bdcd82f1913f1f6fcecbf17a62da018b9727c6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig=20Bj=C3=B8rlykke?= Date: Wed, 2 Jan 2008 11:34:35 +0000 Subject: [PATCH] Mark some unused parameters with _U_. Added a missing return value. svn path=/trunk/; revision=23986 --- epan/dissectors/packet-h264.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/epan/dissectors/packet-h264.c b/epan/dissectors/packet-h264.c index e1c514fa6b..7f2511eaea 100644 --- a/epan/dissectors/packet-h264.c +++ b/epan/dissectors/packet-h264.c @@ -1580,7 +1580,7 @@ dissect_h264(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) */ static void -dissect_h264_pnm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, const gchar *name) +dissect_h264_pnm(tvbuff_t *tvb _U_, packet_info *pinfo, proto_tree *tree, const gchar *name) { asn1_ctx_t *actx; @@ -1611,7 +1611,7 @@ static const int *profile_fields[] = { }; static int -dissect_h264_par_profile(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) +dissect_h264_par_profile(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree) { int offset = 0; @@ -1629,7 +1629,8 @@ static const value_string h264_par_level_values[] = { { 0, NULL } }; -dissect_h264_par_level(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) +static int +dissect_h264_par_level(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree _U_) { int offset = 0; guint16 lvl;