uridownloader: Fix string order in warning message

This commit is contained in:
Sebastian Dröge 2014-03-13 14:41:06 +01:00
parent 7ddd67baef
commit dbb42d914f

View file

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