aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_stream.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-20 14:02:00 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-20 14:02:00 +0000
commit0edcc8920eb4e0483f1c7886f07cce465bae2260 (patch)
tree17d7a1bddeab8630608cf30bc38356ff5ad4495a /gtk/rtp_stream.c
parent4fd9fcc63956b732bfde38cc8ec6622b51ba7e06 (diff)
- Declare some functions static
- Add plugins_dlg.h - Include .h files in their respective .c files - Include .h and remove extern declarations in .c files - set eol-style and keywords on gui_utils.[hc] svn path=/trunk/; revision=15471
Diffstat (limited to 'gtk/rtp_stream.c')
-rw-r--r--gtk/rtp_stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/rtp_stream.c b/gtk/rtp_stream.c
index d85cf9a2f1..a598adb2f4 100644
--- a/gtk/rtp_stream.c
+++ b/gtk/rtp_stream.c
@@ -63,7 +63,7 @@ static rtpstream_tapinfo_t the_tapinfo_struct =
/****************************************************************************/
/* GCompareFunc style comparison function for _rtp_stream_info */
-gint rtp_stream_info_cmp(gconstpointer aa, gconstpointer bb)
+static gint rtp_stream_info_cmp(gconstpointer aa, gconstpointer bb)
{
const struct _rtp_stream_info* a = aa;
const struct _rtp_stream_info* b = bb;
@@ -115,7 +115,7 @@ static void rtpstream_reset_cb(void *arg)
/****************************************************************************/
/* redraw the output */
-void rtpstream_draw(void *arg _U_)
+static void rtpstream_draw(void *arg _U_)
{
/* XXX: see rtpstream_on_update in rtp_streams_dlg.c for comments
gtk_signal_emit_by_name(top_level, "signal_rtpstream_update");