commit | 2e7a091833f014cac8a6b92573ca6cd2edd2753c | [log] [tgz] |
---|---|---|
author | Arnaud Lacombe <lacombar@gmail.com> | Sat Sep 04 16:03:30 2010 -0400 |
committer | Arnaud Lacombe <lacombar@gmail.com> | Sun Sep 19 22:54:00 2010 -0400 |
tree | 43ba1037f16dca5aba229a1a9b134b1ebb7b555f | |
parent | ba6ff60d5eb47d52f1a5eb0bb6ffa751be838c46 [diff] [blame] |
kconfig: constify file name Signed-off-by: Arnaud Lacombe <lacombar@gmail.com> Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Michal Marek <mmarek@suse.cz>
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h index 6ee2e4f..648c609 100644 --- a/scripts/kconfig/expr.h +++ b/scripts/kconfig/expr.h
@@ -18,7 +18,7 @@ struct file { struct file *next; struct file *parent; - char *name; + const char *name; int lineno; int flags; };