summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);