aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fcip.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-03-06 23:55:37 -0500
committerBill Meier <wmeier@newsguy.com>2014-03-07 05:03:41 +0000
commit4fbcfc1289e6af3e090803b287fa508ece4b3822 (patch)
tree50a3f4400322b2cbf6d1a2474388957b2a1a0c9c /epan/dissectors/packet-fcip.c
parentfc2be9eac4dd404d62c58df5d85d65c14d84703c (diff)
(Benign) Don't use "address-of" operator on arg of VALS() (not that it makes any actual difference)..
Change-Id: I0766d0f130648aaa5a58d9f4062fa24e898cbdc3 Reviewed-on: https://code.wireshark.org/review/545 Reviewed-by: Bill Meier <wmeier@newsguy.com> Tested-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/dissectors/packet-fcip.c')
-rw-r--r--epan/dissectors/packet-fcip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-fcip.c b/epan/dissectors/packet-fcip.c
index 847635dd0d..642155ac2d 100644
--- a/epan/dissectors/packet-fcip.c
+++ b/epan/dissectors/packet-fcip.c
@@ -577,13 +577,13 @@ proto_register_fcip (void)
NULL, 0, NULL, HFILL}},
{ &hf_fcip_sof,
{"SOF", "fcip.sof", FT_UINT8, BASE_HEX,
- VALS (&fcip_sof_vals), 0, NULL, HFILL}},
+ VALS (fcip_sof_vals), 0, NULL, HFILL}},
{ &hf_fcip_sof_c,
{"SOF (1's Complement)", "fcip.sofc", FT_UINT8, BASE_HEX,
NULL, 0, NULL, HFILL}},
{ &hf_fcip_eof,
{"EOF", "fcip.eof", FT_UINT8, BASE_HEX,
- VALS (&fcip_eof_vals), 0, NULL, HFILL}},
+ VALS (fcip_eof_vals), 0, NULL, HFILL}},
{ &hf_fcip_eof_c,
{"EOF (1's Complement)", "fcip.eofc", FT_UINT8, BASE_HEX,
NULL, 0, NULL, HFILL}},