diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 22:57:24 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:07:14 +0800 |
commit | 4ca94531a85b8f648f5be5f9951b1e8c56e4e8a7 (patch) | |
tree | 834e3b53751d4655ba15b1507b3f919a54547161 /libempathy-gtk | |
parent | 30848986f6483ac8c43c0ed4d84a479a2f480783 (diff) | |
download | gsoc2013-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')
-rw-r--r-- | libempathy-gtk/empathy-video-src.c | 6 | ||||
-rw-r--r-- | libempathy-gtk/empathy-video-src.h | 2 |
2 files changed, 4 insertions, 4 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; diff --git a/libempathy-gtk/empathy-video-src.h b/libempathy-gtk/empathy-video-src.h index fef0b84dd..4197d7fad 100644 --- a/libempathy-gtk/empathy-video-src.h +++ b/libempathy-gtk/empathy-video-src.h @@ -55,7 +55,7 @@ GType empathy_video_src_get_type (void); /* TYPE MACROS */ #define EMPATHY_TYPE_GST_VIDEO_SRC \ - (empathy_video_src_get_type()) + (empathy_video_src_get_type ()) #define EMPATHY_GST_VIDEO_SRC(obj) \ (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_GST_VIDEO_SRC, \ EmpathyGstVideoSrc)) |