From ef81a8a2ad4dedc9dccec3c090d552b5dd5ed0dd Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Tue, 8 Oct 2013 15:41:15 +0200 Subject: [PATCH] Use qint64 rather than int64_t. --- src/mirall/progressdispatcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mirall/progressdispatcher.cpp b/src/mirall/progressdispatcher.cpp index 3d2b365e12..57ab332503 100644 --- a/src/mirall/progressdispatcher.cpp +++ b/src/mirall/progressdispatcher.cpp @@ -177,7 +177,7 @@ void ProgressDispatcher::setProgressInfo(const QString& folder, const Progress:: newProgress.overall_current_bytes = newProgress.overall_transmission_size; newProgress.current_file_no = newProgress.overall_file_count; _currentAction.remove(newProgress.folder); - int64_t msecs = _timer.elapsed(); + qint64 msecs = _timer.elapsed(); qDebug()<< "[PROGRESS] progressed " << newProgress.overall_transmission_size << " bytes in " << newProgress.overall_file_count << " files"