aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/rtp_stream_dlg.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-12-14 14:33:46 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-12-14 14:33:46 +0000
commite0e86bab5a246069f6b51bf552b6bc2564136b4b (patch)
treef0ba66660da68048d7baaa14aa1e1f2ab4981a8d /ui/gtk/rtp_stream_dlg.c
parent2754c08d932d20fff1aca664dd925d63e1e46ff3 (diff)
Fix const warnings.
svn path=/trunk/; revision=54092
Diffstat (limited to 'ui/gtk/rtp_stream_dlg.c')
-rw-r--r--ui/gtk/rtp_stream_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/rtp_stream_dlg.c b/ui/gtk/rtp_stream_dlg.c
index e2280c5738..7d48c4faf2 100644
--- a/ui/gtk/rtp_stream_dlg.c
+++ b/ui/gtk/rtp_stream_dlg.c
@@ -189,8 +189,8 @@ rtpstream_on_unselect(GtkButton *button _U_, gpointer user_data _U_)
/****************************************************************************/
static gint rtp_stream_info_cmp_reverse(gconstpointer aa, gconstpointer bb)
{
- const struct _rtp_stream_info* a = (struct _rtp_stream_info *)aa;
- const struct _rtp_stream_info* b = (struct _rtp_stream_info *)bb;
+ const struct _rtp_stream_info* a = (const struct _rtp_stream_info *)aa;
+ const struct _rtp_stream_info* b = (const struct _rtp_stream_info *)bb;
if (a==NULL || b==NULL)
return 1;