mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix compile errors on Centos 7
This commit is contained in:
parent
505264a200
commit
497cf8e5c4
@ -2426,7 +2426,7 @@ bool backup6 (const QString & path) {
|
||||
QStringList fileNames = hpath.entryList(); // Get list of files
|
||||
if (! fileNames.isEmpty()) {
|
||||
QString lastFile = fileNames.first();
|
||||
qDebug() << "last settings file is" << lastFile << "new file is" << settingsFile;
|
||||
qDebug() << "last settings file is" << lastFile << "new file is" << settingsFile.fileName();
|
||||
QByteArray newMD5 = fileChecksum(settingsFile.fileName(), QCryptographicHash::Md5);
|
||||
QByteArray oldMD5 = fileChecksum(hpath.absolutePath()+"/"+lastFile, QCryptographicHash::Md5);
|
||||
if (newMD5 == oldMD5)
|
||||
|
@ -5329,7 +5329,8 @@ mz_bool mz_zip_validate_file(mz_zip_archive *pZip, mz_uint file_index, mz_uint f
|
||||
goto handle_failure;
|
||||
}
|
||||
|
||||
has_id = (MZ_READ_LE32(descriptor_buf) == MZ_ZIP_DATA_DESCRIPTOR_ID);
|
||||
pSrc = descriptor_buf; // avoid g++ warning/error
|
||||
has_id = (MZ_READ_LE32(pSrc) == MZ_ZIP_DATA_DESCRIPTOR_ID);
|
||||
pSrc = has_id ? (descriptor_buf + sizeof(mz_uint32)) : descriptor_buf;
|
||||
|
||||
file_crc32 = MZ_READ_LE32(pSrc);
|
||||
|
@ -128,7 +128,7 @@ public:
|
||||
dates = copy.dates;
|
||||
highlight = copy.highlight;
|
||||
}
|
||||
RXItem& operator=(const RXItem& other) = default;
|
||||
RXItem& operator=(const RXItem&) = default;
|
||||
inline quint64 count(ChannelID id) const {
|
||||
QHash<ChannelID, quint64>::const_iterator it = s_count.find(id);
|
||||
if (it == s_count.end()) return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user