Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 110050
b: refs/heads/master
c: 661b068
h: refs/heads/master
v: v3
  • Loading branch information
zippel@linux-m68k.org authored and Linus Torvalds committed Sep 29, 2008
1 parent 3848284 commit 4debc83
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 204c96f609045a8ce84d1dca3e758ee9b0b2a95c
refs/heads/master: 661b0680f736e628a6da1cc030c201646587d658
8 changes: 6 additions & 2 deletions trunk/scripts/kconfig/confdata.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,10 @@ int conf_read_simple(const char *name, int def)
continue;
if (def == S_DEF_USER) {
sym = sym_find(line + 9);
if (!sym)
if (!sym) {
sym_add_change_count(1);
break;
}
} else {
sym = sym_lookup(line + 9, 0);
if (sym->type == S_UNKNOWN)
Expand Down Expand Up @@ -259,8 +261,10 @@ int conf_read_simple(const char *name, int def)
}
if (def == S_DEF_USER) {
sym = sym_find(line + 7);
if (!sym)
if (!sym) {
sym_add_change_count(1);
break;
}
} else {
sym = sym_lookup(line + 7, 0);
if (sym->type == S_UNKNOWN)
Expand Down

0 comments on commit 4debc83

Please sign in to comment.