From 06749bd66bb3e689bc96be1a3739747912ee0020 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Mon, 6 Dec 2010 17:55:16 +0200 Subject: mingw32 build: fix signed/unsigned warnings as errors --- client/process_loop.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client/process_loop.h') diff --git a/client/process_loop.h b/client/process_loop.h index 2d355f74..33ca2d13 100644 --- a/client/process_loop.h +++ b/client/process_loop.h @@ -165,7 +165,7 @@ public: void activate_interval_timer(Timer* timer, unsigned int millisec); void deactivate_interval_timer(Timer* timer); - int get_soonest_timeout(); + unsigned int get_soonest_timeout(); void timers_action(); private: @@ -207,7 +207,7 @@ public: void process_events_queue(); /* can be used for handling timers in modal loop state in Windows (mainly, for updating the screen) */ - int get_soonest_timeout(); + unsigned int get_soonest_timeout(); void timers_action(); void* get_owner() { return _owner;} -- cgit