summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2012-09-12 12:37:04 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.co.uk>2013-05-25 16:31:13 -0400
commit2e603d535518f0db237cc421bd4a83b430b77857 (patch)
tree15cd630a0a999f6843c1e499d60dd6a1be353659
parentc1d9010478766fd0c9a6864f74ca38f12e102af9 (diff)
object: Fix function declaration coding style
-rw-r--r--gnl/gnlobject.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/gnl/gnlobject.c b/gnl/gnlobject.c
index 956d3ef..5c60a2e 100644
--- a/gnl/gnlobject.c
+++ b/gnl/gnlobject.c
@@ -67,16 +67,14 @@ static GParamSpec *properties[PROP_LAST];
static void gnl_object_dispose (GObject * object);
-static void
-gnl_object_set_property (GObject * object, guint prop_id,
- const GValue * value, GParamSpec * pspec);
-static void
-gnl_object_get_property (GObject * object, guint prop_id,
+static void gnl_object_set_property (GObject * object, guint prop_id,
+ const GValue * value, GParamSpec * pspec);
+static void gnl_object_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec);
-static GstStateChangeReturn
-gnl_object_change_state (GstElement * element, GstStateChange transition);
+static GstStateChangeReturn gnl_object_change_state (GstElement * element,
+ GstStateChange transition);
static gboolean gnl_object_prepare_func (GnlObject * object);
static gboolean gnl_object_cleanup_func (GnlObject * object);