From a3c2f53d617c8ac62fd883bab79b1789688bbeae Mon Sep 17 00:00:00 2001 From: wmeier Date: Sun, 19 Jun 2011 18:47:35 +0000 Subject: Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37716 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/dissectors/packet-isup.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'epan/dissectors/packet-isup.c') diff --git a/epan/dissectors/packet-isup.c b/epan/dissectors/packet-isup.c index 4e92181fa0..8ebd08be64 100644 --- a/epan/dissectors/packet-isup.c +++ b/epan/dissectors/packet-isup.c @@ -3613,7 +3613,6 @@ static void dissect_isup_application_transport_parameter(tvbuff_t *parameter_tvb, packet_info *pinfo, proto_tree *parameter_tree, proto_item *parameter_item) { - guint8 application_transport_instruction_ind; guint8 si_and_apm_seg_ind; guint8 apm_Segmentation_local_ref = 0; guint16 aci16; @@ -3647,7 +3646,6 @@ dissect_isup_application_transport_parameter(tvbuff_t *parameter_tvb, packet_inf /* Octet 2 */ proto_tree_add_text(parameter_tree, parameter_tvb, offset, -1, "Application transport instruction indicators: "); - application_transport_instruction_ind = tvb_get_guint8(parameter_tvb, offset); proto_tree_add_item( parameter_tree, hf_isup_extension_ind, parameter_tvb, offset, 1, FALSE ); proto_tree_add_item( parameter_tree, hf_isup_app_Send_notification_ind, parameter_tvb, offset, 1, FALSE ); proto_tree_add_item( parameter_tree, hf_isup_app_Release_call_ind, parameter_tvb, offset, 1, FALSE ); -- cgit v1.2.3