diff options
author | Bill Meier <wmeier@newsguy.com> | 2014-03-06 23:55:37 -0500 |
---|---|---|
committer | Bill Meier <wmeier@newsguy.com> | 2014-03-07 05:03:41 +0000 |
commit | 4fbcfc1289e6af3e090803b287fa508ece4b3822 (patch) | |
tree | 50a3f4400322b2cbf6d1a2474388957b2a1a0c9c /epan/dissectors/packet-frame.c | |
parent | fc2be9eac4dd404d62c58df5d85d65c14d84703c (diff) | |
download | wireshark-4fbcfc1289e6af3e090803b287fa508ece4b3822.tar.gz wireshark-4fbcfc1289e6af3e090803b287fa508ece4b3822.tar.bz2 wireshark-4fbcfc1289e6af3e090803b287fa508ece4b3822.zip |
(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-frame.c')
-rw-r--r-- | epan/dissectors/packet-frame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-frame.c b/epan/dissectors/packet-frame.c index 013e033cfe..bfcf295527 100644 --- a/epan/dissectors/packet-frame.c +++ b/epan/dissectors/packet-frame.c @@ -710,12 +710,12 @@ proto_register_frame(void) { &hf_frame_pack_direction, { "Direction", "frame.packet_flags_direction", - FT_UINT32, BASE_HEX, VALS(&packet_word_directions), PACKET_WORD_DIRECTION_MASK, + FT_UINT32, BASE_HEX, VALS(packet_word_directions), PACKET_WORD_DIRECTION_MASK, NULL, HFILL }}, { &hf_frame_pack_reception_type, { "Reception type", "frame.packet_flags_reception_type", - FT_UINT32, BASE_DEC, VALS(&packet_word_reception_types), PACKET_WORD_RECEPTION_TYPE_MASK, + FT_UINT32, BASE_DEC, VALS(packet_word_reception_types), PACKET_WORD_RECEPTION_TYPE_MASK, NULL, HFILL }}, { &hf_frame_pack_fcs_length, |