diff options
-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)) |