projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94f2505
)
kconfig: fix typo in change count initialization
author
Roman Zippel
<zippel@linux-m68k.org>
Sun, 9 Apr 2006 15:27:28 +0000
(17:27 +0200)
committer
Sam Ravnborg
<sam@mars.ravnborg.org>
Tue, 11 Apr 2006 11:41:06 +0000
(13:41 +0200)
Configuration needs saving when either of these conditions is true.
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
scripts/kconfig/confdata.c
patch
|
blob
|
history
diff --git
a/scripts/kconfig/confdata.c
b/scripts/kconfig/confdata.c
index
1b8882d
..
1b5df58
100644
(file)
--- a/
scripts/kconfig/confdata.c
+++ b/
scripts/kconfig/confdata.c
@@
-325,7
+325,7
@@
int conf_read(const char *name)
sym->flags |= e->right.sym->flags & SYMBOL_NEW;
}
- sym_change_count = conf_warnings
&&
conf_unsaved;
+ sym_change_count = conf_warnings
||
conf_unsaved;
return 0;
}