diff options
author | Maciej Katafiasz <mathrick@mathrick.org> | 2006-05-06 00:14:09 +0000 |
---|---|---|
committer | Maciej Katafiasz <mathrick@mathrick.org> | 2006-05-06 00:14:09 +0000 |
commit | be7d42b5489c1062f2200e7f70677d2327ce8f12 (patch) | |
tree | 867277bba9213ed1803dd917a2df039d1b62daff /gst/debug/testplugin.c | |
parent | 59bc24d7388f546acfef09dc62868a6e984d5e18 (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/testplugin.c')
-rw-r--r-- | gst/debug/testplugin.c | 5 |
1 files changed, 3 insertions, 2 deletions
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); |