summaryrefslogtreecommitdiff
path: root/driver.h
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-11-28 20:55:16 +0000
committerDarkvater <darkvater@openttd.org>2006-11-28 20:55:16 +0000
commit7c945bf8283d381ebf7982377b639f163f23a1ea (patch)
tree5c4e14a6ee9c764ba23ada2a4c72dcc0ade951c2 /driver.h
parentdcbbda0cb9674e8fc9aaa64a0861fd6381ae4202 (diff)
downloadopenttd-7c945bf8283d381ebf7982377b639f163f23a1ea.tar.xz
(svn r7280) -Codechange: Replace some sprintf() functions with the safer snprintf() functions
Diffstat (limited to 'driver.h')
-rw-r--r--driver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.h b/driver.h
index 2cbb029c8..4e25714f7 100644
--- a/driver.h
+++ b/driver.h
@@ -8,6 +8,6 @@ void LoadDriver(int driver, const char *name);
bool GetDriverParamBool(const char* const* parm, const char* name);
int GetDriverParamInt(const char* const* parm, const char* name, int def);
-char *GetDriverList(char* p);
+char *GetDriverList(char *p, const char *last);
#endif /* DRIVER_H */