mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-04 22:48:54 +00:00
uridownloader: Fix string order in warning message
This commit is contained in:
parent
7ddd67baef
commit
dbb42d914f
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ gst_uri_downloader_bus_handler (GstBus * bus,
|
|||
gst_message_parse_error (message, &err, &dbg_info);
|
||||
GST_WARNING_OBJECT (downloader,
|
||||
"Received error: %s from %s, the download will be cancelled",
|
||||
GST_OBJECT_NAME (message->src), err->message);
|
||||
err->message, GST_OBJECT_NAME (message->src));
|
||||
GST_DEBUG ("Debugging info: %s\n", (dbg_info) ? dbg_info : "none");
|
||||
|
||||
if (!downloader->priv->err)
|
||||
|
|
Loading…
Reference in a new issue