From 8ea201ece9582898c45733d4c8c0d4370bedad1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Mon, 21 May 2018 23:13:47 +0200 Subject: [PATCH] Use usigned long long to fix compiler error --- YACReaderLibrary/server/controllers/v2/synccontroller_v2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YACReaderLibrary/server/controllers/v2/synccontroller_v2.cpp b/YACReaderLibrary/server/controllers/v2/synccontroller_v2.cpp index 2f5fdc8d..f1b8b40e 100644 --- a/YACReaderLibrary/server/controllers/v2/synccontroller_v2.cpp +++ b/YACReaderLibrary/server/controllers/v2/synccontroller_v2.cpp @@ -24,7 +24,7 @@ void SyncControllerV2::service(HttpRequest &request, HttpResponse &response) qulonglong comicId; int currentPage; int currentRating; - unsigned long lastTimeOpened; + unsigned long long lastTimeOpened; QString hash; foreach(QString comicInfo, data) {