settings-test: Remove unused variable in printf() call

This commit is contained in:
Tobias Brunner
2018-09-17 18:51:43 +02:00
parent c07dde4b7d
commit d601058a26
+1 -1
View File
@@ -73,7 +73,7 @@ static void print_section(section_t *section, int level)
printf("%s%s", j == 0 ? " : " : ", ", ref->name); printf("%s%s", j == 0 ? " : " : ", ", ref->name);
} }
} }
printf(" {\n", indent); printf(" {\n");
print_section(sub, level + 1); print_section(sub, level + 1);
printf("%s}\n", indent); printf("%s}\n", indent);
} }