Minor fix to #ifdefs in DV6 loader

This commit is contained in:
Guy Scharf 2021-04-13 17:48:39 -06:00
parent 037b13c73c
commit 5a64262ff6

View File

@ -923,12 +923,14 @@ private:
int numWritten; // Number of records written int numWritten; // Number of records written
quint32 lastTimestamp; quint32 lastTimestamp;
unsigned int wrap_record;
}; };
bool RollingBackup::open (const QString filetype, DV6_HEADER * newhdr) { bool RollingBackup::open (const QString filetype, DV6_HEADER * newhdr) {
if (!create_backups) if (!create_backups)
return true; return true;
#ifdef ROLLBACKUP
this->filetype = filetype; this->filetype = filetype;
QDir hpath(history_path); QDir hpath(history_path);
@ -971,17 +973,20 @@ bool RollingBackup::open (const QString filetype, DV6_HEADER * newhdr) {
} }
record_length = hdr.recordLength; record_length = hdr.recordLength;
#ifdef ROLLBACKUP
wrap_record = convertNum(hdr.recordStart); wrap_record = convertNum(hdr.recordStart);
if (!histfile.seek(sizeof(DV6_HEADER) + (wrap_record-1) * record_length)) { if (!histfile.seek(sizeof(DV6_HEADER) + (wrap_record-1) * record_length)) {
qWarning() << "DV6 RollingBackup unable to make initial seek to record" << wrap_record << "in" + filename << file.error() << file.errorString(); qWarning() << "DV6 RollingBackup unable to make initial seek to record" << wrap_record
file.close(); << "in" + histfile.fileName() << histfile.error() << histfile.errorString();
histfile.close();
return false; return false;
} }
#endif
} }
} }
#else
Q_UNUSED(filetype)
Q_UNUSED(newhdr)
#endif
return true; return true;
} }