aboutsummaryrefslogtreecommitdiffstats
path: root/epan/funnel.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-05-17 22:18:32 +0000
committerGuy Harris <guy@alum.mit.edu>2011-05-17 22:18:32 +0000
commit1372515b029def7cfb5f3004ca0cca9c04ae18e2 (patch)
treefbda41e147559bc96c05c9840a765d96a41c9633 /epan/funnel.c
parent592f0ba6da8cce7a4189d73cc787185c37623511 (diff)
More eradication of old-style function definitions.
svn path=/trunk/; revision=37216
Diffstat (limited to 'epan/funnel.c')
-rw-r--r--epan/funnel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/funnel.c b/epan/funnel.c
index 83a74afee9..7ba4142c0c 100644
--- a/epan/funnel.c
+++ b/epan/funnel.c
@@ -44,7 +44,7 @@ typedef struct _funnel_menu_t {
static const funnel_ops_t* ops = NULL;
static funnel_menu_t* menus = NULL;
-const funnel_ops_t* funnel_get_funnel_ops() { return ops; }
+const funnel_ops_t* funnel_get_funnel_ops(void) { return ops; }
void funnel_set_funnel_ops(const funnel_ops_t* o) { ops = o; }
void funnel_register_menu(const char *name,