Fix indentation of .c files

Required to make gst-indent linter on CI happy.
This commit is contained in:
Tim-Philipp Müller 2018-12-15 13:55:07 +00:00
parent 31a98a889e
commit 7b1dcdab58
2 changed files with 29 additions and 26 deletions

View file

@ -12,14 +12,17 @@ static guint test_object_signals[LAST_SIGNAL] = { 0 };
G_DEFINE_TYPE (TestObject, test_object, G_TYPE_OBJECT);
static void test_object_init (TestObject *self) {}
static void test_object_class_init (TestObjectClass *klass)
static void
test_object_init (TestObject * self)
{
}
static void
test_object_class_init (TestObjectClass * klass)
{
test_object_signals[SIGNAL_EVENT] =
g_signal_new ("event", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (TestObjectClass, event), NULL, NULL,
g_cclosure_marshal_VOID__BOXED, G_TYPE_NONE, 1,
GST_TYPE_EVENT);
g_cclosure_marshal_VOID__BOXED, G_TYPE_NONE, 1, GST_TYPE_EVENT);
}