diff options
author | rubidium <rubidium@openttd.org> | 2008-05-25 17:04:09 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-25 17:04:09 +0000 |
commit | 5292ee981ef223ca2a5b33764cb713e95a7bd902 (patch) | |
tree | c53f42c03e51ef14a2e9ae185f5240cda14dca06 /src | |
parent | cfc8ed1f5b4bca8290d06c603e67b2252cc67c27 (diff) | |
download | openttd-5292ee981ef223ca2a5b33764cb713e95a7bd902.tar.xz |
(svn r13247) -Codechange: small amount of coding style for settings.cpp.
Diffstat (limited to 'src')
-rw-r--r-- | src/settings.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/settings.cpp b/src/settings.cpp index ee9a4c8e8..46e187ea2 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -331,9 +331,11 @@ static IniGroup *ini_getgroup(IniFile *ini, const char *name, size_t len = 0) if (len == 0) len = strlen(name); /* does it exist already? */ - for (group = ini->group; group; group = group->next) - if (!memcmp(group->name, name, len) && group->name[len] == 0) + for (group = ini->group; group != NULL; group = group->next) { + if (!memcmp(group->name, name, len) && group->name[len] == 0) { return group; + } + } /* otherwise make a new one */ group = ini_group_alloc(ini, name, len); @@ -347,8 +349,9 @@ static IniItem *ini_getitem(IniGroup *group, const char *name, bool create) IniItem *item; size_t len = strlen(name); - for (item = group->item; item; item = item->next) + for (item = group->item; item != NULL; item = item->next) { if (strcmp(item->name, name) == 0) return item; + } if (!create) return NULL; |