summaryrefslogtreecommitdiff
path: root/print/sioyek/files/patch-pdf__viewer_utils.cpp
blob: 0586ac3c20fa89d7c05a73414689e0cc47dd18e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- pdf_viewer/utils.cpp.orig	2025-05-13 14:36:40 UTC
+++ pdf_viewer/utils.cpp
@@ -1548,7 +1548,7 @@ void sleep_ms(unsigned int ms) {
 #ifdef Q_OS_WIN
     Sleep(ms);
 #else
-    struct timespec ts = { ms / 1000, (ms % 1000) * 1000 * 1000 };
+    struct timespec ts = { static_cast<time_t>(ms / 1000), static_cast<long>((ms % 1000) * 1000 * 1000) };
     nanosleep(&ts, NULL);
 #endif
 }