mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-13 00:33:09 -07:00
- Fix compilation warning
This commit is contained in:
parent
f22c2f8c7b
commit
adda3a2d34
1 changed files with 1 additions and 1 deletions
|
@ -537,7 +537,7 @@ class RssStream : public QObject{
|
||||||
QDomDocument doc("Rss Seed");
|
QDomDocument doc("Rss Seed");
|
||||||
QFile fileRss(filePath);
|
QFile fileRss(filePath);
|
||||||
if(!fileRss.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
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)) {
|
if(QFile::exists(filePath)) {
|
||||||
fileRss.remove();
|
fileRss.remove();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue