aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_stream.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-01-18 16:21:12 +0000
committerJörg Mayer <jmayer@loplof.de>2004-01-18 16:21:12 +0000
commite68ca30d107e5d95a190e8d56e409059707f3cca (patch)
treef838e437d1a2a3f09df733bd2b40c09a02944196 /gtk/rtp_stream.c
parentaa411b186187330168d3e0e06d95f3ca70dc827b (diff)
Fix warnings found by -Wstrict-prototypes
svn path=/trunk/; revision=9722
Diffstat (limited to 'gtk/rtp_stream.c')
-rw-r--r--gtk/rtp_stream.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/rtp_stream.c b/gtk/rtp_stream.c
index 7ba9418ec2..f021dcb668 100644
--- a/gtk/rtp_stream.c
+++ b/gtk/rtp_stream.c
@@ -1,7 +1,7 @@
/* rtp_stream.c
* RTP streams summary addition for ethereal
*
- * $Id: rtp_stream.c,v 1.5 2004/01/13 22:49:15 guy Exp $
+ * $Id: rtp_stream.c,v 1.6 2004/01/18 16:08:21 jmayer Exp $
*
* Copyright 2003, Alcatel Business Systems
* By Lars Ruoff <lars.ruoff@gmx.net>
@@ -259,7 +259,7 @@ int rtpstream_packet(rtpstream_tapinfo_t *tapinfo _U_, packet_info *pinfo, epan_
/****************************************************************************/
/* scan for RTP streams */
-void rtpstream_scan()
+void rtpstream_scan(void)
{
gboolean was_registered = the_tapinfo_struct.is_registered;
if (!the_tapinfo_struct.is_registered)
@@ -322,7 +322,7 @@ void rtpstream_mark(rtp_stream_info_t* stream_fwd, rtp_stream_info_t* stream_rev
/****************************************************************************/
-const rtpstream_tapinfo_t* rtpstream_get_info()
+const rtpstream_tapinfo_t* rtpstream_get_info(void)
{
return &the_tapinfo_struct;
}