summaryrefslogtreecommitdiff
path: root/window.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-09 21:25:44 +0000
committertron <tron@openttd.org>2005-01-09 21:25:44 +0000
commit4450ff105c6ddb9ab855b9cf8b4dcbea315b11e0 (patch)
tree3a16c9375ca0fbd2f06a419b1b0876bf48c7a3e0 /window.c
parentd2e02df8814edab9e04437d8208d2e7786dfd999 (diff)
downloadopenttd-4450ff105c6ddb9ab855b9cf8b4dcbea315b11e0.tar.xz
(svn r1451) Fix some of the signed/unsigned comparison warnings
Diffstat (limited to 'window.c')
-rw-r--r--window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/window.c b/window.c
index 10bc0de86..08604eb7e 100644
--- a/window.c
+++ b/window.c
@@ -407,7 +407,7 @@ Window *AllocateWindow(
w->resize.step_height = 1;
{
- int i;
+ uint i;
for (i=0;i<lengthof(w->custom);i++)
w->custom[i] = 0;
}