aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dec-bpdu.c
diff options
context:
space:
mode:
authordimeg <dimeg@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-17 18:35:27 +0000
committerdimeg <dimeg@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-17 18:35:27 +0000
commit6e6604fd29499c14a577bc00c404e9af6ba7710a (patch)
tree0c1a8f4c587328fa6f7313f95799faaab62acfb4 /epan/dissectors/packet-dec-bpdu.c
parentd086f5208c2d9aa5555f06ff0a3a184f6d28e56c (diff)
Remove the address operator from value_string arrays fed to VALS()
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30995 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-dec-bpdu.c')
-rw-r--r--epan/dissectors/packet-dec-bpdu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-dec-bpdu.c b/epan/dissectors/packet-dec-bpdu.c
index a66d54729e..fe0cd2c75b 100644
--- a/epan/dissectors/packet-dec-bpdu.c
+++ b/epan/dissectors/packet-dec-bpdu.c
@@ -200,11 +200,11 @@ proto_register_dec_bpdu(void)
static hf_register_info hf[] = {
{ &hf_dec_bpdu_proto_id,
{ "Protocol Identifier", "dec_stp.protocol",
- FT_UINT8, BASE_HEX, VALS(&protocol_id_vals), 0x0,
+ FT_UINT8, BASE_HEX, VALS(protocol_id_vals), 0x0,
NULL, HFILL }},
{ &hf_dec_bpdu_type,
{ "BPDU Type", "dec_stp.type",
- FT_UINT8, BASE_DEC, VALS(&bpdu_type_vals), 0x0,
+ FT_UINT8, BASE_DEC, VALS(bpdu_type_vals), 0x0,
NULL, HFILL }},
{ &hf_dec_bpdu_version_id,
{ "BPDU Version", "dec_stp.version",