summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2024-02-03 00:58:11 +0900
committerMasahiro Yamada <masahiroy@kernel.org>2024-02-19 18:20:40 +0900
commitfe273c6fc318da07bdbb42d26d8e6e150aa947af (patch)
treef19b001ff8319c29a7640fe912d7bfa9b96d99f5 /scripts
parent1a90b0cdc02a9efba97a2ea49e4b851958137053 (diff)
downloadlinux-stable-fe273c6fc318da07bdbb42d26d8e6e150aa947af.tar.gz
linux-stable-fe273c6fc318da07bdbb42d26d8e6e150aa947af.tar.bz2
linux-stable-fe273c6fc318da07bdbb42d26d8e6e150aa947af.zip
kconfig: replace file->name with name in zconf_nextfile()
The 'file->name' and 'name' are the same in this function. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/lexer.l10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/kconfig/lexer.l b/scripts/kconfig/lexer.l
index 3b3893f673dc..35ad1b256470 100644
--- a/scripts/kconfig/lexer.l
+++ b/scripts/kconfig/lexer.l
@@ -420,10 +420,10 @@ void zconf_nextfile(const char *name)
buf->yylineno = yylineno;
buf->parent = current_buf;
current_buf = buf;
- yyin = zconf_fopen(file->name);
+ yyin = zconf_fopen(name);
if (!yyin) {
fprintf(stderr, "%s:%d: can't open file \"%s\"\n",
- cur_filename, cur_lineno, file->name);
+ cur_filename, cur_lineno, name);
exit(1);
}
yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
@@ -432,17 +432,17 @@ void zconf_nextfile(const char *name)
file->parent = current_file;
for (iter = current_file; iter; iter = iter->parent) {
- if (!strcmp(iter->name, file->name)) {
+ if (!strcmp(iter->name, name)) {
fprintf(stderr,
"Recursive inclusion detected.\n"
"Inclusion path:\n"
- " current file : %s\n", file->name);
+ " current file : %s\n", name);
iter = file;
do {
iter = iter->parent;
fprintf(stderr, " included from: %s:%d\n",
iter->name, iter->lineno);
- } while (strcmp(iter->name, file->name));
+ } while (strcmp(iter->name, name));
exit(1);
}
}