aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-05-12 12:38:24 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-05-12 12:38:24 -0400
commit1d91efc28e30c8501428fec8ff6cd7b13dcdfb95 (patch)
tree6ae1275a5f8e5794b917aac95c6cb1ab3f4cb6c5
parent9e4a3f4471cfc50d778b50d6999cd957bff62ec0 (diff)
downloadstasis-1d91efc28e30c8501428fec8ff6cd7b13dcdfb95.tar.gz
replace for-loop with while-loop since 'i' was unusedbughunt-1002
-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");
}