From 5292ee981ef223ca2a5b33764cb713e95a7bd902 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 25 May 2008 17:04:09 +0000 Subject: (svn r13247) -Codechange: small amount of coding style for settings.cpp. --- src/settings.cpp | 9 ++++++--- 1 file 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; -- cgit v1.2.3-70-g09d2