diff options
author | Darkvater <Darkvater@openttd.org> | 2006-02-04 23:09:33 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-02-04 23:09:33 +0000 |
commit | 6e1be04923801fc48f179adc990734d2f2c3b609 (patch) | |
tree | 77383b0bb40df0f586d13d4def6d9a6acdf87280 | |
parent | 655e5b7ee2959ea780daa81406ff445af2261ca4 (diff) | |
download | openttd-6e1be04923801fc48f179adc990734d2f2c3b609.tar.xz |
(svn r3550) - [Patches]: fix GCC warning, sorry
-rw-r--r-- | settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.c b/settings.c index b27b0218c..229f228c4 100644 --- a/settings.c +++ b/settings.c @@ -1059,7 +1059,7 @@ static const SettingDesc currency_settings[] = { { NULL, 0, NULL, NULL, NULL } }; -typedef void SettingDescProc(IniFile *ini, const SettingDesc *desc, const void *grpname); +typedef void SettingDescProc(IniFile *ini, const SettingDesc *desc, const char *grpname); static void HandleSettingDescs(IniFile *ini, SettingDescProc *proc) { |