From e64942068632fc01b6a1211bfb90df8265e41fe7 Mon Sep 17 00:00:00 2001 From: Pascal Quantin Date: Sun, 6 Jul 2014 21:41:45 +0200 Subject: [PATCH] H264: mark a parameter as unused Change-Id: I564a0fefc263d909c9e478b64c5a816756d97377 Reviewed-on: https://code.wireshark.org/review/2902 Reviewed-by: Pascal Quantin --- epan/dissectors/packet-h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-h264.c b/epan/dissectors/packet-h264.c index 453595eeb7..fa28479113 100644 --- a/epan/dissectors/packet-h264.c +++ b/epan/dissectors/packet-h264.c @@ -2044,7 +2044,7 @@ dissect_h264_seq_parameter_set_extension_rbsp(proto_tree *tree, tvbuff_t *tvb, p /* RFC 6190 Section: 1.1.3 - NAL Unit Header Extension - H.264 Annex G*/ static gint -dissect_h264_svc_nal_header_extension(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, gint offset) +dissect_h264_svc_nal_header_extension(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo _U_, gint offset) { proto_tree_add_item(tree, hf_h264_nal_hdr_ext_svc, tvb, offset, 1, ENC_BIG_ENDIAN); proto_tree_add_item(tree, hf_h264_nal_hdr_ext_i, tvb, offset, 1, ENC_BIG_ENDIAN);