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
commit17ca2c49a538eb4896e0b6e6ff24d12e6915ede2 (patch)
treef89ba1ea60d31b2d81001fc7f60d31bc9bac8360 /os2.c
parent7278f72157d834da45a3b7986128ea865c1b8ddc (diff)
downloadopenttd-17ca2c49a538eb4896e0b6e6ff24d12e6915ede2.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;
}