diff options
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/divelogexportdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/divelogexportdialog.cpp b/qt-ui/divelogexportdialog.cpp index 4e00b4e2a..965af494f 100644 --- a/qt-ui/divelogexportdialog.cpp +++ b/qt-ui/divelogexportdialog.cpp @@ -334,7 +334,7 @@ void DiveLogExportDialog::export_depths(const char *filename, const bool selecte int n = dive->dc.samples; struct sample *s = dive->dc.sample; depth.mm = 0; - while (--n >= 0 && s->time.seconds <= picture->offset.seconds) { + while (--n >= 0 && (int32_t)s->time.seconds <= picture->offset.seconds) { depth.mm = s->depth.mm; s++; } |