1
0
Fork 0

kconfig: fix typo in change count initialization

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>
wifi-calibration
Roman Zippel 2006-04-09 17:27:28 +02:00 committed by Sam Ravnborg
parent 94f2505be3
commit b5ac4817de
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}