diff --git a/src/dict/utils/indexedzip.cc b/src/dict/utils/indexedzip.cc index f8af9190e..55d536755 100644 --- a/src/dict/utils/indexedzip.cc +++ b/src/dict/utils/indexedzip.cc @@ -166,14 +166,13 @@ bool IndexedZip::indexFile( BtreeIndexing::IndexedWords & zipFileNames, quint32 // File seems to be a valid zip file ZipFile::CentralDirEntry entry; - bool alreadyCounted; if ( filesCount ) { *filesCount = 0; } while ( ZipFile::readNextEntry( zip, entry ) ) { if ( entry.compressionMethod == ZipFile::Unsupported ) { - qWarning( "Zip warning: compression method unsupported -- skipping file \"%s\"", entry.fileName.data() ); + qWarning() << "Zip warning: compression method unsupported -- skipping file" << entry.fileName.data(); continue; }