summaryrefslogtreecommitdiff
path: root/settings.c
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-28 18:53:03 +0000
committerrubidium <rubidium@openttd.org>2006-08-28 18:53:03 +0000
commit86dc219b4b668913b2deb90bf7ddfe0a479e3acd (patch)
tree9de9b15a15bde4d4e092c3abfde1fae7eb2d76f0 /settings.c
parentd8644d941d4205cb95890f84165c787872b36da5 (diff)
downloadopenttd-86dc219b4b668913b2deb90bf7ddfe0a479e3acd.tar.xz
(svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else {' -> '} else {', tabs between code and comment, etc.
Diffstat (limited to 'settings.c')
-rw-r--r--settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.c b/settings.c
index 180d5830b..8151b7bbd 100644
--- a/settings.c
+++ b/settings.c
@@ -341,7 +341,7 @@ static bool ini_save(const char *filename, IniFile *ini)
assert(item->value != NULL);
if (item->comment != NULL) fputs(item->comment, f);
- //*Don't give an equal sign to list items that don't have a parameter */
+ /* Don't give an equal sign to list items that don't have a parameter */
if (group->type == IGT_LIST && *item->value == '\0') {
fprintf(f, "%s\n", item->name);
} else {