]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
settings-test: Remove unused variable in printf() call
authorTobias Brunner <tobias@strongswan.org>
Mon, 17 Sep 2018 15:43:18 +0000 (17:43 +0200)
committerTobias Brunner <tobias@strongswan.org>
Mon, 17 Sep 2018 16:51:43 +0000 (18:51 +0200)
scripts/settings-test.c

index 5811d70b5d87474c865551bb72ac4dab445188a8..04637d0a99dcd1b038c05943450bb8bf8fc46c7f 100644 (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);
        }