aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tap.c
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.c
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/tap.c')
-rw-r--r--epan/tap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/tap.c b/epan/tap.c
index 564254802b..851675c87b 100644
--- a/epan/tap.c
+++ b/epan/tap.c
@@ -425,7 +425,7 @@ draw_tap_listeners(gboolean draw_all)
is owned by the tap table and should not be modified or freed.
Use g_list_free() when done using the list. */
GList*
-get_tap_names()
+get_tap_names(void)
{
GList *list = NULL;
tap_dissector_t *td;