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

This commit is contained in:
Tobias Brunner 2018-09-17 17:43:18 +02:00
parent c07dde4b7d
commit d601058a26
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ static void print_section(section_t *section, int level)
printf("%s%s", j == 0 ? " : " : ", ", ref->name);
}
}
printf(" {\n", indent);
printf(" {\n");
print_section(sub, level + 1);
printf("%s}\n", indent);
}