summaryrefslogtreecommitdiff
path: root/strings.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2004-11-14 19:44:06 +0000
committertron <tron@openttd.org>2004-11-14 19:44:06 +0000
commit249a170acef352b40c7fa67fe65bdc62cbae4ff1 (patch)
tree42822c6c00e5ddf808a4b35810f9522ad3dcf5ed /strings.c
parent200d3fdbe83717437d7dad0fb99b180c3ca103a7 (diff)
downloadopenttd-249a170acef352b40c7fa67fe65bdc62cbae4ff1.tar.xz
(svn r607) -Patch: [ 985102 ] static cleanup
Thanks to lvoge
Diffstat (limited to 'strings.c')
-rw-r--r--strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings.c b/strings.c
index d24df8df4..567ec6792 100644
--- a/strings.c
+++ b/strings.c
@@ -186,7 +186,7 @@ int32 GetParamInt32()
return result;
}
-int64 GetParamInt64()
+static int64 GetParamInt64()
{
int64 result = GET_DPARAM32(0) + ((uint64)GET_DPARAM32(1) << 32);
memcpy_overlapping(&_decode_parameters[0], &_decode_parameters[2], sizeof(uint32) * (lengthof(_decode_parameters)-2));