diff options
author | Maciej Katafiasz <mathrick@mathrick.org> | 2006-05-06 00:15:59 +0000 |
---|---|---|
committer | Maciej Katafiasz <mathrick@mathrick.org> | 2006-05-06 00:15:59 +0000 |
commit | 9c90508cc1920d85d2b67b4f6ea46eff1ca088f2 (patch) | |
tree | 8a73a0dd14597b8b9ca755827e3634814766fb3d /ext/xine/xineinput.c | |
parent | ab273cf9865eb03aec33024126c63aa59894e756 (diff) | |
download | gst-plugins-bad-9c90508cc1920d85d2b67b4f6ea46eff1ca088f2.tar.gz gst-plugins-bad-9c90508cc1920d85d2b67b4f6ea46eff1ca088f2.tar.bz2 gst-plugins-bad-9c90508cc1920d85d2b67b4f6ea46eff1ca088f2.zip |
Add semicolons after GST_BOILERPLATE[_FULL] so that indent doesn't mess up following lines.
Original commit message from CVS:
Add semicolons after GST_BOILERPLATE[_FULL] so that indent doesn't mess up following lines.
Diffstat (limited to 'ext/xine/xineinput.c')
-rw-r--r-- | ext/xine/xineinput.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/xine/xineinput.c b/ext/xine/xineinput.c index fb4813ac..b5b7f0e0 100644 --- a/ext/xine/xineinput.c +++ b/ext/xine/xineinput.c @@ -67,18 +67,18 @@ enum ARG_LOCATION }; -GST_BOILERPLATE (GstXineInput, gst_xine_input, GstXine, GST_TYPE_XINE) +GST_BOILERPLATE (GstXineInput, gst_xine_input, GstXine, GST_TYPE_XINE); - static void gst_xine_input_dispose (GObject * object); - static void gst_xine_input_set_property (GObject * object, guint prop_id, +static void gst_xine_input_dispose (GObject * object); +static void gst_xine_input_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec); - static void gst_xine_input_get_property (GObject * object, guint prop_id, +static void gst_xine_input_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec); - static GstStateChangeReturn - gst_xine_input_change_state (GstElement * element, - GstStateChange transition); +static GstStateChangeReturn +gst_xine_input_change_state (GstElement * element, GstStateChange transition); - static void gst_xine_input_base_init (gpointer g_class) +static void +gst_xine_input_base_init (gpointer g_class) { } |