summaryrefslogtreecommitdiff
path: root/src/sound/null_s.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-03-07 11:47:46 +0000
committerrubidium <rubidium@openttd.org>2007-03-07 11:47:46 +0000
commit36bb92ae241403d61dc7a3e5a1696b615be61395 (patch)
tree5676d0d54be47c40d975fdeb1026317fc2a010db /src/sound/null_s.cpp
parenta69e3b1c45f12ee6f21a4ac1c8a8f8bc0892f226 (diff)
downloadopenttd-36bb92ae241403d61dc7a3e5a1696b615be61395.tar.xz
(svn r9050) -Codechange: Foo(void) -> Foo()
Diffstat (limited to 'src/sound/null_s.cpp')
-rw-r--r--src/sound/null_s.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound/null_s.cpp b/src/sound/null_s.cpp
index e2c5ce2d8..00eab496f 100644
--- a/src/sound/null_s.cpp
+++ b/src/sound/null_s.cpp
@@ -4,7 +4,7 @@
#include "null_s.h"
static const char *NullSoundStart(const char * const *parm) { return NULL; }
-static void NullSoundStop(void) {}
+static void NullSoundStop() {}
const HalSoundDriver _null_sound_driver = {
NullSoundStart,