Renamed a local variable to avoid name collisions.
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 23 Jun 2008 21:34:40 +0000 (21:34 +0000)
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 23 Jun 2008 21:34:40 +0000 (21:34 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25561 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-bssgp.c

index b2b4ca8451e9ea375e9170e3b25a678dbe0a99fa..2ecade090c9f55af30ba8366ede1e694273c4cec 100644 (file)
@@ -2837,7 +2837,7 @@ decode_iei_ra_cap_upd_cause(bssgp_ie_t *ie, build_info_t *bi, int ie_start_offse
   proto_item *ti;
   guint8 value;
 
-  static const value_string tab_cause[] = {
+  static const value_string tab_cause_value[] = {
     { 0x00, "OK, RA capability IE present" },
     { 0x01, "TLLI unknown in SGSN" },
     { 0x02, "No RA capabilities or IMSI available for this MS" },
@@ -2849,7 +2849,7 @@ decode_iei_ra_cap_upd_cause(bssgp_ie_t *ie, build_info_t *bi, int ie_start_offse
     ti = bssgp_proto_tree_add_ie(ie, bi, ie_start_offset);
     value = tvb_get_guint8(bi->tvb, bi->offset);
     proto_item_append_text(ti, ": %s (%#2x)",
-                          val_to_str(value, tab_cause, "Reserved (TLLI unknown in SGSN)"),
+                          val_to_str(value, tab_cause_value, "Reserved (TLLI unknown in SGSN)"),
                           value);
   }
   bi->offset += ie->value_length;