aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-vsip.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-03-10 23:05:34 +0100
committerMichael Mann <mmann78@netscape.net>2015-03-11 00:00:40 +0000
commit45a06dba6ae45e47dc8d49df0efe5381faef77e4 (patch)
tree56fe42c5f5c2e140f738b73148d70a0605dad177 /epan/dissectors/packet-vsip.c
parente991610467e9ec7345f2867515afe417dca57053 (diff)
VSIP : fix initializing 'const void *' with an expression of type 'void (*)(gchar *, guint32)' converts between void pointer and function pointer [-Wpedantic]
Change-Id: Idb7f075f67402d4ca02934a22ad0fd1127c89369 Reviewed-on: https://code.wireshark.org/review/7632 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-vsip.c')
-rw-r--r--epan/dissectors/packet-vsip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-vsip.c b/epan/dissectors/packet-vsip.c
index 315365f55c..8f51c44201 100644
--- a/epan/dissectors/packet-vsip.c
+++ b/epan/dissectors/packet-vsip.c
@@ -2062,7 +2062,7 @@ void proto_register_vsip(void)
{ "NumAddArgs", "vsip.ErrorVAResponse.NumAddArgs", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL } },
{ &hf_vsip_Version,
{ "Version", "vsip.Version", FT_UINT16, BASE_CUSTOM,
- &vsip_fmt_revision, 0x0, NULL, HFILL } },
+ CF_FUNC(vsip_fmt_revision), 0x0, NULL, HFILL } },
{ &hf_vsip_Type,
{ "Type", "vsip.Type", FT_UINT8, BASE_DEC|BASE_EXT_STRING,
&EVsipMessageType_vals_ext, 0x0, NULL, HFILL } },