From de4c6ff5157aeec5f1e03f514a71f8530666ed21 Mon Sep 17 00:00:00 2001 From: Bill Meier Date: Mon, 18 Jan 2010 21:49:47 +0000 Subject: Fix a number of gcc _Wshadow warnings svn path=/trunk/; revision=31557 --- epan/dissectors/packet-gsm_bssmap_le.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'epan/dissectors/packet-gsm_bssmap_le.c') diff --git a/epan/dissectors/packet-gsm_bssmap_le.c b/epan/dissectors/packet-gsm_bssmap_le.c index 270ec0db0a..9851942059 100644 --- a/epan/dissectors/packet-gsm_bssmap_le.c +++ b/epan/dissectors/packet-gsm_bssmap_le.c @@ -865,12 +865,12 @@ dissect_bssmap_le(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) proto_item *bssmap_le_item = NULL; proto_tree *bssmap_le_tree = NULL; const gchar *str; - sccp_msg_info_t* sccp_msg; + sccp_msg_info_t* sccp_msg_p; - sccp_msg = pinfo->sccp_info; + sccp_msg_p = pinfo->sccp_info; - if (!(sccp_msg && sccp_msg->data.co.assoc)) { - sccp_msg = NULL; + if (!(sccp_msg_p && sccp_msg_p->data.co.assoc)) { + sccp_msg_p = NULL; } col_append_str(pinfo->cinfo, COL_INFO, "(BSSMAP LE) "); @@ -901,8 +901,8 @@ dissect_bssmap_le(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) str = match_strval_idx((guint32) oct, gsm_bssmap_le_msg_strings, &idx); - if (sccp_msg && !sccp_msg->data.co.label) { - sccp_msg->data.co.label = se_strdup(val_to_str((guint32) oct, gsm_bssmap_le_msg_strings, "BSSMAP LE(0x%02x)")); + if (sccp_msg_p && !sccp_msg_p->data.co.label) { + sccp_msg_p->data.co.label = se_strdup(val_to_str((guint32) oct, gsm_bssmap_le_msg_strings, "BSSMAP LE(0x%02x)")); } /* -- cgit v1.2.3