summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2015-07-22 18:55:29 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2015-07-22 18:55:29 -0400
commit815b5f69e805c032fc11c77c36e5b8ab5929856d (patch)
tree743e12c60b1cd410aa84d8691c92950f40b170a7
parentf9aa30674781651a64c39903325bf385c34b75ec (diff)
harness: Fix indendation
-rw-r--r--libs/gst/check/gstharness.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/gst/check/gstharness.c b/libs/gst/check/gstharness.c
index 1bb385d28..22418eac2 100644
--- a/libs/gst/check/gstharness.c
+++ b/libs/gst/check/gstharness.c
@@ -1999,7 +1999,7 @@ void
gst_harness_add_src (GstHarness * h,
const gchar * src_element_name, gboolean has_clock_wait)
{
- GstHarness * src_harness = gst_harness_new (src_element_name);
+ GstHarness *src_harness = gst_harness_new (src_element_name);
gst_harness_add_src_harness (h, src_harness, has_clock_wait);
}
@@ -2024,7 +2024,7 @@ void
gst_harness_add_src_parse (GstHarness * h,
const gchar * launchline, gboolean has_clock_wait)
{
- GstHarness * src_harness = gst_harness_new_parse (launchline);
+ GstHarness *src_harness = gst_harness_new_parse (launchline);
gst_harness_add_src_harness (h, src_harness, has_clock_wait);
}