summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-udp.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2009-06-15 02:34:53 +0000
committerJörg Mayer <jmayer@loplof.de>2009-06-15 02:34:53 +0000
commitc321f29518de560f5aa5e7ada52c5841c229cb8b (patch)
treede9c99a1cc991f7d1c0a6d5ef4117ed01bb0d411 /epan/dissectors/packet-udp.c
parentce3d46b20c917c6ce71d877af6318aef6921cd2d (diff)
downloadwireshark-c321f29518de560f5aa5e7ada52c5841c229cb8b.tar.gz
Trivial warning fixes:
- Might be used uninitialized - not a prototype - comma at end of enum svn path=/trunk/; revision=28730
Diffstat (limited to 'epan/dissectors/packet-udp.c')
-rw-r--r--epan/dissectors/packet-udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-udp.c b/epan/dissectors/packet-udp.c
index 0add0200ac..da2e884c50 100644
--- a/epan/dissectors/packet-udp.c
+++ b/epan/dissectors/packet-udp.c
@@ -105,7 +105,7 @@ static gboolean try_heuristic_first = FALSE;
/* Conversation and process code originally copied from packet-tcp.c */
static struct udp_analysis *
-init_udp_conversation_data()
+init_udp_conversation_data(void)
{
struct udp_analysis *udpd=NULL;