diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/expr.h | 2 | ||||
-rw-r--r-- | scripts/kconfig/lkc.h | 2 | ||||
-rw-r--r-- | scripts/kconfig/zconf.l | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h index 6ee2e4fb1481..648c609caba0 100644 --- a/scripts/kconfig/expr.h +++ b/scripts/kconfig/expr.h | |||
@@ -18,7 +18,7 @@ extern "C" { | |||
18 | struct file { | 18 | struct file { |
19 | struct file *next; | 19 | struct file *next; |
20 | struct file *parent; | 20 | struct file *parent; |
21 | char *name; | 21 | const char *name; |
22 | int lineno; | 22 | int lineno; |
23 | int flags; | 23 | int flags; |
24 | }; | 24 | }; |
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h index 5d5f1872d651..753cdbd7b805 100644 --- a/scripts/kconfig/lkc.h +++ b/scripts/kconfig/lkc.h | |||
@@ -76,7 +76,7 @@ FILE *zconf_fopen(const char *name); | |||
76 | void zconf_initscan(const char *name); | 76 | void zconf_initscan(const char *name); |
77 | void zconf_nextfile(const char *name); | 77 | void zconf_nextfile(const char *name); |
78 | int zconf_lineno(void); | 78 | int zconf_lineno(void); |
79 | char *zconf_curname(void); | 79 | const char *zconf_curname(void); |
80 | 80 | ||
81 | /* conf.c */ | 81 | /* conf.c */ |
82 | void xfgets(char *str, int size, FILE *in); | 82 | void xfgets(char *str, int size, FILE *in); |
diff --git a/scripts/kconfig/zconf.l b/scripts/kconfig/zconf.l index d8f7236cb0a3..2b0265082d0a 100644 --- a/scripts/kconfig/zconf.l +++ b/scripts/kconfig/zconf.l | |||
@@ -353,7 +353,7 @@ int zconf_lineno(void) | |||
353 | return current_pos.lineno; | 353 | return current_pos.lineno; |
354 | } | 354 | } |
355 | 355 | ||
356 | char *zconf_curname(void) | 356 | const char *zconf_curname(void) |
357 | { | 357 | { |
358 | return current_pos.file ? current_pos.file->name : "<none>"; | 358 | return current_pos.file ? current_pos.file->name : "<none>"; |
359 | } | 359 | } |