summaryrefslogtreecommitdiffstats
path: root/client/process_loop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/process_loop.cpp')
-rw-r--r--client/process_loop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/process_loop.cpp b/client/process_loop.cpp
index d7e6744f..9a0dadcb 100644
--- a/client/process_loop.cpp
+++ b/client/process_loop.cpp
@@ -236,7 +236,7 @@ unsigned int TimersQueue::get_soonest_timeout()
if (next_time <= now) {
return 0;
}
- return (next_time - now);
+ return (int)(next_time - now);
}