uridownloader: Fix string order in warning message
authorSebastian Dröge <sebastian@centricular.com>
Thu, 13 Mar 2014 13:41:06 +0000 (14:41 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Thu, 13 Mar 2014 13:41:06 +0000 (14:41 +0100)
gst-libs/gst/uridownloader/gsturidownloader.c

index 4732854..7d6ba93 100644 (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)