aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-video-src.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 22:57:24 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 23:07:14 +0800
commit4ca94531a85b8f648f5be5f9951b1e8c56e4e8a7 (patch)
tree834e3b53751d4655ba15b1507b3f919a54547161 /libempathy-gtk/empathy-video-src.c
parent30848986f6483ac8c43c0ed4d84a479a2f480783 (diff)
downloadgsoc2013-empathy-4ca94531a85b8f648f5be5f9951b1e8c56e4e8a7.tar
gsoc2013-empathy-4ca94531a85b8f648f5be5f9951b1e8c56e4e8a7.tar.gz
gsoc2013-empathy-4ca94531a85b8f648f5be5f9951b1e8c56e4e8a7.tar.bz2
gsoc2013-empathy-4ca94531a85b8f648f5be5f9951b1e8c56e4e8a7.tar.lz
gsoc2013-empathy-4ca94531a85b8f648f5be5f9951b1e8c56e4e8a7.tar.xz
gsoc2013-empathy-4ca94531a85b8f648f5be5f9951b1e8c56e4e8a7.tar.zst
gsoc2013-empathy-4ca94531a85b8f648f5be5f9951b1e8c56e4e8a7.zip
empathy-video-src: fix coding style
Diffstat (limited to 'libempathy-gtk/empathy-video-src.c')
-rw-r--r--libempathy-gtk/empathy-video-src.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-video-src.c b/libempathy-gtk/empathy-video-src.c
index d2d03026b..bd014a5d9 100644
--- a/libempathy-gtk/empathy-video-src.c
+++ b/libempathy-gtk/empathy-video-src.c
@@ -159,7 +159,7 @@ empathy_video_src_set_channel (GstElement *src,
channels = gst_color_balance_list_channels (balance);
- for (l = (GList *)channels; l != NULL; l = g_list_next (l))
+ for (l = (GList *) channels; l != NULL; l = g_list_next (l))
{
GstColorBalanceChannel *c = GST_COLOR_BALANCE_CHANNEL (l->data);
@@ -195,7 +195,7 @@ empathy_video_src_get_channel (GstElement *src,
channels = gst_color_balance_list_channels (balance);
- for (l = (GList *)channels; l != NULL; l = g_list_next (l))
+ for (l = (GList *) channels; l != NULL; l = g_list_next (l))
{
GstColorBalanceChannel *c = GST_COLOR_BALANCE_CHANNEL (l->data);
@@ -235,7 +235,7 @@ empathy_video_src_get_supported_channels (GstElement *src)
channels = gst_color_balance_list_channels (balance);
- for (l = (GList *)channels; l != NULL; l = g_list_next (l))
+ for (l = (GList *) channels; l != NULL; l = g_list_next (l))
{
GstColorBalanceChannel *channel = GST_COLOR_BALANCE_CHANNEL (l->data);
int i;