Fix double semicolons

This commit is contained in:
Tim-Philipp Müller 2015-03-10 09:21:22 +00:00
parent 4aee7ca58a
commit bd7d1c8b61
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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);