summaryrefslogtreecommitdiff
path: root/epan/packet.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/packet.c
parent592f0ba6da8cce7a4189d73cc787185c37623511 (diff)
downloadwireshark-1372515b029def7cfb5f3004ca0cca9c04ae18e2.tar.gz
More eradication of old-style function definitions.
svn path=/trunk/; revision=37216
Diffstat (limited to 'epan/packet.c')
-rw-r--r--epan/packet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/packet.c b/epan/packet.c
index 2ea73b77d8..a6e78f05ba 100644
--- a/epan/packet.c
+++ b/epan/packet.c
@@ -1902,7 +1902,7 @@ dissector_dump_decodes_display(const gchar *table_name,
}
void
-dissector_dump_decodes()
+dissector_dump_decodes(void)
{
dissector_all_tables_foreach(dissector_dump_decodes_display, NULL);
}
@@ -1921,7 +1921,7 @@ register_postdissector(dissector_handle_t handle)
}
gboolean
-have_postdissector()
+have_postdissector(void)
{
guint i;
dissector_handle_t handle;