diff options
author | tron <tron@openttd.org> | 2005-02-05 18:05:42 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-02-05 18:05:42 +0000 |
commit | 17ca2c49a538eb4896e0b6e6ff24d12e6915ede2 (patch) | |
tree | f89ba1ea60d31b2d81001fc7f60d31bc9bac8360 /os/beos | |
parent | 7278f72157d834da45a3b7986128ea865c1b8ddc (diff) | |
download | openttd-17ca2c49a538eb4896e0b6e6ff24d12e6915ede2.tar.xz |
(svn r1805) Teach the driver layer a few things about const correctness
Diffstat (limited to 'os/beos')
-rw-r--r-- | os/beos/bemidi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/beos/bemidi.cpp b/os/beos/bemidi.cpp index d0f41d865..969231a6d 100644 --- a/os/beos/bemidi.cpp +++ b/os/beos/bemidi.cpp @@ -9,7 +9,7 @@ BMidiSynthFile midiSynthFile; -static char *bemidi_start(char **parm) +static const char *bemidi_start(const char * const *parm) { return NULL; } |