From d601058a262fb680e2b2939a4ae095f8aa8e2ab4 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 17 Sep 2018 17:43:18 +0200 Subject: [PATCH] settings-test: Remove unused variable in printf() call --- scripts/settings-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/settings-test.c b/scripts/settings-test.c index 5811d70b5..04637d0a9 100644 --- a/scripts/settings-test.c +++ b/scripts/settings-test.c @@ -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); }