From 645236df2bc908de7abcd6b3d8aab0467ee2d401 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Thu, 27 Jan 2011 12:12:41 +0200 Subject: client: fix broken vs2008 build --- client/process_loop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/process_loop.cpp') 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); } -- cgit