diff options
author | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-11-16 17:27:36 +0000 |
---|---|---|
committer | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-11-16 17:27:36 +0000 |
commit | fe6f248cdc670f751974400cfb5a77fbd348aeb3 (patch) | |
tree | 00a35ce07c7be623c716b1ebe6b896828a61008a /scripts | |
parent | 0b5b412730c541afd0bbc048b033c53c47e80b3d (diff) |
mconf: Fix compile warning:
"warning: conflicting types for ‘sym_set_all_changed’"
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29190 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/config/symbol.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/scripts/config/symbol.c b/scripts/config/symbol.c index 1d718da3a..49bb25455 100644 --- a/scripts/config/symbol.c +++ b/scripts/config/symbol.c @@ -266,6 +266,26 @@ static struct symbol *sym_calc_choice(struct symbol *sym) return NULL; } +void sym_set_changed(struct symbol *sym) +{ + struct property *prop; + + sym->flags |= SYMBOL_CHANGED; + for (prop = sym->prop; prop; prop = prop->next) { + if (prop->menu) + prop->menu->flags |= MENU_CHANGED; + } +} + +void sym_set_all_changed(void) +{ + struct symbol *sym; + int i; + + for_all_symbols(i, sym) + sym_set_changed(sym); +} + void sym_calc_value(struct symbol *sym) { struct symbol_value newval, oldval; @@ -396,26 +416,6 @@ void sym_clear_all_valid(void) sym_calc_value(modules_sym); } -void sym_set_changed(struct symbol *sym) -{ - struct property *prop; - - sym->flags |= SYMBOL_CHANGED; - for (prop = sym->prop; prop; prop = prop->next) { - if (prop->menu) - prop->menu->flags |= MENU_CHANGED; - } -} - -void sym_set_all_changed(void) -{ - struct symbol *sym; - int i; - - for_all_symbols(i, sym) - sym_set_changed(sym); -} - bool sym_tristate_within_range(struct symbol *sym, tristate val) { int type = sym_get_type(sym); |