uridownloader: Fix string order in warning message
This commit is contained in:
parent
7ddd67baef
commit
dbb42d914f
@ -199,7 +199,7 @@ gst_uri_downloader_bus_handler (GstBus * bus,
|
|||||||
gst_message_parse_error (message, &err, &dbg_info);
|
gst_message_parse_error (message, &err, &dbg_info);
|
||||||
GST_WARNING_OBJECT (downloader,
|
GST_WARNING_OBJECT (downloader,
|
||||||
"Received error: %s from %s, the download will be cancelled",
|
"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");
|
GST_DEBUG ("Debugging info: %s\n", (dbg_info) ? dbg_info : "none");
|
||||||
|
|
||||||
if (!downloader->priv->err)
|
if (!downloader->priv->err)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user