aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h264.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-01-02 11:34:35 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-01-02 11:34:35 +0000
commit1bdcd82f1913f1f6fcecbf17a62da018b9727c6d (patch)
tree76e569efa5f45122c9594ac0ca23bd6a5ac91334 /epan/dissectors/packet-h264.c
parentb1e1b232aadf05df3919a470da5e4e41150defbd (diff)
Mark some unused parameters with _U_.
Added a missing return value. svn path=/trunk/; revision=23986
Diffstat (limited to 'epan/dissectors/packet-h264.c')
-rw-r--r--epan/dissectors/packet-h264.c7
1 files 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;