diff options
author | rubidium <rubidium@openttd.org> | 2007-03-07 11:47:46 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-03-07 11:47:46 +0000 |
commit | 4169bfba0604b33bad92389bd3eb6f9acde89f49 (patch) | |
tree | 5676d0d54be47c40d975fdeb1026317fc2a010db /src/dedicated.cpp | |
parent | 3e2fae03bdfcc672cffd342e5fadf06cff41e4e6 (diff) | |
download | openttd-4169bfba0604b33bad92389bd3eb6f9acde89f49.tar.xz |
(svn r9050) -Codechange: Foo(void) -> Foo()
Diffstat (limited to 'src/dedicated.cpp')
-rw-r--r-- | src/dedicated.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dedicated.cpp b/src/dedicated.cpp index 124274662..9de472df5 100644 --- a/src/dedicated.cpp +++ b/src/dedicated.cpp @@ -22,7 +22,7 @@ # define PRINTF_PID_T "%d" #endif -void DedicatedFork(void) +void DedicatedFork() { /* Fork the program */ pid_t pid = fork(); @@ -63,6 +63,6 @@ void DedicatedFork(void) #else -void DedicatedFork(void) {} +void DedicatedFork() {} #endif /* ENABLE_NETWORK */ |