From adda3a2d34886cf10ce6f767453c22bc31ca97b9 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 22 Jun 2008 14:38:00 +0000 Subject: [PATCH] - Fix compilation warning --- src/rss.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rss.h b/src/rss.h index ede19a9cd..0d07271c3 100644 --- a/src/rss.h +++ b/src/rss.h @@ -537,7 +537,7 @@ class RssStream : public QObject{ QDomDocument doc("Rss Seed"); QFile fileRss(filePath); if(!fileRss.open(QIODevice::ReadOnly | QIODevice::Text)) { - qDebug("openRss error : open failed, no file or locked, "+filePath.toUtf8()); + qDebug("openRss error : open failed, no file or locked, %s", (const char*)filePath.toUtf8()); if(QFile::exists(filePath)) { fileRss.remove(); }