aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rfid-pn532.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@zing.org>2015-02-15 17:58:12 -0800
committerGerald Combs <gerald@wireshark.org>2015-02-18 00:05:38 +0000
commit3f765b3ef94fd6044279d47d0b30b46c344e5943 (patch)
tree1218985b912e24bc88d72617d61a7491911ee092 /epan/dissectors/packet-rfid-pn532.c
parentbe5e595da7beb355d385c6a9d96fdd1dad569e61 (diff)
Add a CF_FUNC macro for casting BASE_CUSTOM functions.
Add a CF_FUNC macro to match VALS, TFS, etc. This should help us to avoid the following warning: warning: ISO C forbids initialization between function pointer and 'void *' [-Wpedantic] We could start adding DIAG_OFF+DIAG_ON everywhere but this seems to be more consistent with the other macros in proto.h. Update each instance of BASE_CUSTOM to use CF_FUNC. Adjust a dummy variable name generated by asn2wrs.py that was triggering an invalid error in checkhf.pl. Fix an encoding arguement in packet-elasticsearch.c found by fix-encoding-args.pl. Change-Id: Id0e75076c2d71736639d486f47b87bab84e07d22 Reviewed-on: https://code.wireshark.org/review/7150 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'epan/dissectors/packet-rfid-pn532.c')
-rw-r--r--epan/dissectors/packet-rfid-pn532.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rfid-pn532.c b/epan/dissectors/packet-rfid-pn532.c
index 556b7ef242..0b557b18a2 100644
--- a/epan/dissectors/packet-rfid-pn532.c
+++ b/epan/dissectors/packet-rfid-pn532.c
@@ -1816,7 +1816,7 @@ void proto_register_pn532(void)
VALS(pn532_sam_modes), 0x0, NULL, HFILL}},
{&hf_pn532_sam_timeout,
{"SAM Timeout", "pn532.sam.timeout", FT_UINT8, BASE_CUSTOM,
- sam_timeout_base, 0x0, NULL, HFILL}},
+ CF_FUNC(sam_timeout_base), 0x0, NULL, HFILL}},
{&hf_pn532_sam_irq,
{"SAM IRQ", "pn532.sam.irq", FT_UINT8, BASE_HEX,
NULL, 0x0, NULL, HFILL}},
@@ -2257,7 +2257,7 @@ void proto_register_pn532(void)
VALS(pn532_diagnose_baudrate_vals), 0x00, NULL, HFILL}},
{&hf_pn532_reply_delay,
{"Reply Delay", "pn532.sam.reply_delay", FT_UINT8, BASE_CUSTOM,
- replay_delay_base, 0x0, NULL, HFILL}},
+ CF_FUNC(replay_delay_base), 0x0, NULL, HFILL}},
{&hf_pn532_ciu_tx_mode,
{"CIU Tx Mode", "pn532.ciu_tx_mode", FT_UINT8, BASE_HEX,
NULL, 0x00, NULL, HFILL}},