summaryrefslogtreecommitdiff
path: root/epan/tap.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/tap.h
parent795565491157c253081560209de765b1a98c1c56 (diff)
downloadwireshark-d5c437e8e575006a4dbc3aa9574fd8261f4c87a0.tar.gz
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/tap.h')
-rw-r--r--epan/tap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/tap.h b/epan/tap.h
index 00f03465f7..b8591148c0 100644
--- a/epan/tap.h
+++ b/epan/tap.h
@@ -79,7 +79,7 @@ extern void tap_init(void);
WS_DLL_PUBLIC int register_tap(const char *name);
/* Gets a GList of the tap names */
-GList* get_tap_names();
+WS_DLL_PUBLIC GList* get_tap_names(void);
/** This function will return the tap_id for the specific protocol tap
* or 0 if no such tap was found.