Skip to content

Commit 8d469a7

Browse files
GhostMaster69-devPixelBoot
authored andcommitted
scripts: Silence misleading indentation warning with clang
warning: In file included from scripts/kconfig/zconf.tab.c:2578: ../scripts/kconfig/symbol.c:1133:4: warning: misleading indentation; statement is not part of the previous 'if' [-Wmisleading-indentation] fprintf(stderr, "For a resolution refer to Documentation/kbuild/kconfig-language.txt\n"); ^ ../scripts/kconfig/symbol.c:1130:3: note: previous statement is here if (stack->sym == last_sym) ^ 1 warning generated Signed-off-by: GhostMaster69-dev <rathore6375@gmail.com> Change-Id: I4b7be3de6067a666570a92f6c9b85426f0c48405
1 parent 461434d commit 8d469a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/kconfig/symbol.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1116,7 +1116,7 @@ static void sym_check_print_recursive(struct symbol *last_sym)
11161116
if (stack->sym == last_sym) {
11171117
fprintf(stderr, "%s:%d:error: recursive dependency detected!\n",
11181118
prop->file->name, prop->lineno);
1119-
fprintf(stderr, "For a resolution refer to Documentation/kbuild/kconfig-language.txt\n");
1119+
fprintf(stderr, "For a resolution refer to Documentation/kbuild/kconfig-language.txt\n");
11201120
fprintf(stderr, "subsection \"Kconfig recursive dependency limitations\"\n");
11211121
}
11221122
if (stack->expr) {

0 commit comments

Comments
 (0)