summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2015-03-10 09:21:22 +0000
committerTim-Philipp Müller <tim@centricular.com>2015-03-10 09:24:28 +0000
commitbd7d1c8b618e21f02b0f01fca652c281d1b9fcfd (patch)
tree66e62c8cceef2913c91844f91ca095b2655bd13a
parent4aee7ca58ac1143be89d75351f0e7f414dd0a85c (diff)
Fix double semicolons
-rw-r--r--gst/gstinfo.c2
-rw-r--r--tests/check/pipelines/queue-error.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gst/gstinfo.c b/gst/gstinfo.c
index 6cb06c89d..135e0e719 100644
--- a/gst/gstinfo.c
+++ b/gst/gstinfo.c
@@ -572,7 +572,7 @@ static inline gchar *
gst_info_structure_to_string (const GstStructure * s)
{
if (G_LIKELY (s)) {
- gchar *str = gst_structure_to_string (s);;
+ gchar *str = gst_structure_to_string (s);
if (G_UNLIKELY (pretty_tags && s->name == GST_QUARK (TAGLIST)))
return prettify_structure_string (str);
else
diff --git a/tests/check/pipelines/queue-error.c b/tests/check/pipelines/queue-error.c
index 81e9d25e8..a8408bdea 100644
--- a/tests/check/pipelines/queue-error.c
+++ b/tests/check/pipelines/queue-error.c
@@ -80,7 +80,7 @@ GST_START_TEST (test_queue)
fail_unless (state_ret != GST_STATE_CHANGE_FAILURE);
msg = gst_bus_poll (bus, GST_MESSAGE_ERROR | GST_MESSAGE_EOS, 5 * GST_SECOND);
- fail_unless (msg != NULL, "timeout waiting for error or eos message");;
+ fail_unless (msg != NULL, "timeout waiting for error or eos message");
gst_message_unref (msg);
gst_object_unref (bus);