mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
Fix double semicolons
This commit is contained in:
parent
4aee7ca58a
commit
bd7d1c8b61
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue