Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 107587
b: refs/heads/master
c: f072181
h: refs/heads/master
i:
  107585: f5ff1fb
  107583: 41b3519
v: v3
  • Loading branch information
Sam Ravnborg committed Aug 4, 2008
1 parent 7190910 commit 75b14db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 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: 22127f246dc37ed5bea0915f7860002ba6d87da7
refs/heads/master: f072181e6403b0fe2e2aa800a005497b748fd284
8 changes: 2 additions & 6 deletions trunk/scripts/kconfig/confdata.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,8 @@ int conf_read_simple(const char *name, int def)
continue;
if (def == S_DEF_USER) {
sym = sym_find(line + 9);
if (!sym) {
conf_warning("trying to assign nonexistent symbol %s", line + 9);
if (!sym)
break;
}
} else {
sym = sym_lookup(line + 9, 0);
if (sym->type == S_UNKNOWN)
Expand Down Expand Up @@ -261,10 +259,8 @@ int conf_read_simple(const char *name, int def)
}
if (def == S_DEF_USER) {
sym = sym_find(line + 7);
if (!sym) {
conf_warning("trying to assign nonexistent symbol %s", line + 7);
if (!sym)
break;
}
} else {
sym = sym_lookup(line + 7, 0);
if (sym->type == S_UNKNOWN)
Expand Down

0 comments on commit 75b14db

Please sign in to comment.