diff options
author | smatz <smatz@openttd.org> | 2009-05-21 22:43:25 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-05-21 22:43:25 +0000 |
commit | 6afce484bb9643510fbe51bd2127ed37961099a4 (patch) | |
tree | d3c5bfec1b9efe3edeb171b5db8554f742219a08 /src/saveload | |
parent | c497e9e7edb2a891544450280e326c31a964d1a9 (diff) | |
download | openttd-6afce484bb9643510fbe51bd2127ed37961099a4.tar.xz |
(svn r16373) -Codechange: use () instead of (void) for functions without parameters
Diffstat (limited to 'src/saveload')
-rw-r--r-- | src/saveload/group_sl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/saveload/group_sl.cpp b/src/saveload/group_sl.cpp index 33edf51eb..9bce5cd49 100644 --- a/src/saveload/group_sl.cpp +++ b/src/saveload/group_sl.cpp @@ -17,7 +17,7 @@ static const SaveLoad _group_desc[] = { SLE_END() }; -static void Save_GRPS(void) +static void Save_GRPS() { Group *g; @@ -28,7 +28,7 @@ static void Save_GRPS(void) } -static void Load_GRPS(void) +static void Load_GRPS() { int index; |