changeset 35775:745d887d4975

Add missing type to variable declaration.
author ib
date Fri, 25 Jan 2013 10:49:37 +0000
parents 7224e8f93665
children 85d45ea7ba5d
files gui/ui/actions.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gui/ui/actions.c	Fri Jan 25 10:45:22 2013 +0000
+++ b/gui/ui/actions.c	Fri Jan 25 10:49:37 2013 +0000
@@ -59,7 +59,7 @@
 
 #define GUI_REDRAW_WAIT 375
 
-static unsigned last_redraw_time;
+static unsigned int last_redraw_time;
 
 static void MediumPrepare(int type)
 {
@@ -469,7 +469,7 @@
 /* timer events */
     case ivRedraw:
     {
-        unsigned now = GetTimerMS();
+        unsigned int now = GetTimerMS();
 
         if ((now > last_redraw_time) &&
             (now < last_redraw_time + GUI_REDRAW_WAIT) &&