aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-02-25 16:44:29 -0500
committerEvan Huus <eapache@gmail.com>2014-02-25 21:46:55 +0000
commitd5c437e8e575006a4dbc3aa9574fd8261f4c87a0 (patch)
tree21a55d9dc4390f8ad8eabd81caef7907d0ac4f85 /epan/packet.h
parent795565491157c253081560209de765b1a98c1c56 (diff)
Fix function prototypes.
Functions with no parameters must be written func(void). Fixes (some) of the buildbots. Change-Id: I1a6e5c0553e032e99419fe67eb4b573bbdfe7fe6 Reviewed-on: https://code.wireshark.org/review/388 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/packet.h b/epan/packet.h
index eb9ff2997a..20d665b83d 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -415,7 +415,7 @@ WS_DLL_PUBLIC const char *dissector_handle_get_short_name(const dissector_handle
WS_DLL_PUBLIC int dissector_handle_get_protocol_index(const dissector_handle_t handle);
/* Get a GList of all registered dissector names. */
-GList* get_dissector_names();
+WS_DLL_PUBLIC GList* get_dissector_names(void);
/* Find a dissector by name. */
WS_DLL_PUBLIC dissector_handle_t find_dissector(const char *name);