aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_ini.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ini.c b/tests/test_ini.c
index af47ddf..3070806 100644
--- a/tests/test_ini.c
+++ b/tests/test_ini.c
@@ -205,7 +205,7 @@ void test_ini_getall() {
STASIS_ASSERT_FATAL(ini != NULL, "failed to open ini file");
const struct INIData *d = NULL;
- for (size_t i = 0; (d = ini_getall(ini, "default")) != NULL; i++) {
+ while ((d = ini_getall(ini, "default")) != NULL) {
STASIS_ASSERT(d->key != NULL, "INIData key should not be NULL");
STASIS_ASSERT(d->value != NULL, "INIData key should not be NULL");
}