1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-31 11:35:24 +01:00

Fix a warning message

This commit is contained in:
David Sansome 2010-06-16 22:12:08 +00:00
parent afa4d0a4e2
commit c15afd8083

View File

@ -144,7 +144,7 @@ SongLoader::Result SongLoader::LoadRemote() {
GstElement* source = gst_element_make_from_uri(
GST_URI_SRC, url_.toEncoded().constData(), NULL);
if (!source) {
qWarning() << "Couldn't create gstreamer source element for" << url_;
qWarning() << "Couldn't create gstreamer source element for" << url_.toString();
return Error;
}