aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-paltalk.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2009-05-21 01:01:22 +0000
committerGuy Harris <guy@alum.mit.edu>2009-05-21 01:01:22 +0000
commit19a0011c59691053568397d94ba8199b738aa165 (patch)
tree10f5d2941dde4a368cc4d0041de34cf93878cc2a /epan/dissectors/packet-paltalk.c
parent7a7e7eac344ebb83eceded9c41fbbd11aa582a41 (diff)
foo() and foo(void) might be the same in C++, but they're not the same
in C. svn path=/trunk/; revision=28435
Diffstat (limited to 'epan/dissectors/packet-paltalk.c')
-rw-r--r--epan/dissectors/packet-paltalk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-paltalk.c b/epan/dissectors/packet-paltalk.c
index 28dfbda251..e2f82b13a3 100644
--- a/epan/dissectors/packet-paltalk.c
+++ b/epan/dissectors/packet-paltalk.c
@@ -40,8 +40,8 @@
#define PALTALK_HEADER_LENGTH 6
/* forward reference */
-void proto_register_paltalk();
-void proto_reg_handoff_paltalk();
+void proto_register_paltalk(void);
+void proto_reg_handoff_paltalk(void);
static gboolean dissect_paltalk(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
static guint dissect_paltalk_get_len(packet_info *pinfo _U_, tvbuff_t *tvb, int offset);
static void dissect_paltalk_desegmented(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);