summaryrefslogtreecommitdiffstats
path: root/gst/debug
diff options
context:
space:
mode:
authorMaciej Katafiasz <mathrick@mathrick.org>2006-05-06 00:14:09 +0000
committerMaciej Katafiasz <mathrick@mathrick.org>2006-05-06 00:14:09 +0000
commitbe7d42b5489c1062f2200e7f70677d2327ce8f12 (patch)
tree867277bba9213ed1803dd917a2df039d1b62daff /gst/debug
parent59bc24d7388f546acfef09dc62868a6e984d5e18 (diff)
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 'gst/debug')
-rw-r--r--gst/debug/breakmydata.c5
-rw-r--r--gst/debug/testplugin.c5
2 files changed, 6 insertions, 4 deletions
diff --git a/gst/debug/breakmydata.c b/gst/debug/breakmydata.c
index 4ef3bfe8..542863c3 100644
--- a/gst/debug/breakmydata.c
+++ b/gst/debug/breakmydata.c
@@ -99,9 +99,10 @@ GstStaticPadTemplate bmd_sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
GST_STATIC_CAPS_ANY);
GST_BOILERPLATE (GstBreakMyData, gst_break_my_data, GstBaseTransform,
- GST_TYPE_BASE_TRANSFORM)
+ GST_TYPE_BASE_TRANSFORM);
- static void gst_break_my_data_base_init (gpointer g_class)
+static void
+gst_break_my_data_base_init (gpointer g_class)
{
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
diff --git a/gst/debug/testplugin.c b/gst/debug/testplugin.c
index edd82be9..8fbf66ea 100644
--- a/gst/debug/testplugin.c
+++ b/gst/debug/testplugin.c
@@ -84,9 +84,10 @@ static const GstElementDetails details = GST_ELEMENT_DETAILS ("Test plugin",
"perform a number of tests",
"Benjamin Otte <otte@gnome>");
-GST_BOILERPLATE (GstTest, gst_test, GstBaseSink, GST_TYPE_BASE_SINK)
+GST_BOILERPLATE (GstTest, gst_test, GstBaseSink, GST_TYPE_BASE_SINK);
- static void gst_test_base_init (gpointer g_class)
+static void
+gst_test_base_init (gpointer g_class)
{
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);