Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b5ac4817 authored by Roman Zippel's avatar Roman Zippel Committed by Sam Ravnborg
Browse files

kconfig: fix typo in change count initialization



Configuration needs saving when either of these conditions is true.

Signed-off-by: default avatarRoman Zippel <zippel@linux-m68k.org>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 94f2505b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -325,7 +325,7 @@ int conf_read(const char *name)
				sym->flags |= e->right.sym->flags & SYMBOL_NEW;
				sym->flags |= e->right.sym->flags & SYMBOL_NEW;
	}
	}


	sym_change_count = conf_warnings && conf_unsaved;
	sym_change_count = conf_warnings || conf_unsaved;


	return 0;
	return 0;
}
}