summaryrefslogtreecommitdiff
path: root/os2.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-05 18:05:42 +0000
committertron <tron@openttd.org>2005-02-05 18:05:42 +0000
commit7cac482a73917e4cfc00a9288d2fb72756353271 (patch)
treef89ba1ea60d31b2d81001fc7f60d31bc9bac8360 /os2.c
parent16837cfd9453b292150b44bd8a56c080c4813ab1 (diff)
downloadopenttd-7cac482a73917e4cfc00a9288d2fb72756353271.tar.xz
(svn r1805) Teach the driver layer a few things about const correctness
Diffstat (limited to 'os2.c')
-rw-r--r--os2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os2.c b/os2.c
index c426d28fc..858213866 100644
--- a/os2.c
+++ b/os2.c
@@ -656,7 +656,7 @@ static bool OS2MidiIsSongPlaying()
return strcmp(buf, "playing") == 0 || strcmp(buf, "seeking") == 0;
}
-static char *OS2MidiStart(char **parm)
+static const char *OS2MidiStart(const char * const *parm)
{
return 0;
}