summaryrefslogtreecommitdiff
path: root/driver.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-09-25 09:04:59 +0000
committertron <tron@openttd.org>2005-09-25 09:04:59 +0000
commitbdbceba0cb70ddd0ba8f17d0bfae31e973f7d0f2 (patch)
treed32081413d37e02ae74f2636f2ff0fa5e08da4dc /driver.c
parentd20bcf3eb5619cb742207e1bc6f59fc7c88f3fc3 (diff)
downloadopenttd-bdbceba0cb70ddd0ba8f17d0bfae31e973f7d0f2.tar.xz
(svn r2984) Use adequate types, this should aid portability a bit
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 1657c193b..8484c743d 100644
--- a/driver.c
+++ b/driver.c
@@ -166,7 +166,7 @@ void LoadDriver(int driver, const char *name)
static const char* GetDriverParam(const char* const* parm, const char* name)
{
- uint len;
+ size_t len;
if (parm == NULL) return NULL;