diff options
author | Keith Packard <keithp@keithp.com> | 2012-07-16 14:39:05 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-07-16 14:39:05 -0700 |
commit | 366217e86a4c353012b5102322ee6927f7b27a21 (patch) | |
tree | 001881e509e8202868d3153edb842f9f85784cb4 | |
parent | 81b7b58c9df01847fa47747deeff8c3c91304ad1 (diff) |
altos: Remove unused 'func' from ao_config_set
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/core/ao_config.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/ao_config.c b/src/core/ao_config.c index 88fcc12d..e2095e65 100644 --- a/src/core/ao_config.c +++ b/src/core/ao_config.c @@ -562,12 +562,10 @@ ao_config_set(void) { char c; uint8_t cmd; - void (*__xdata func)(void) __reentrant; ao_cmd_white(); c = ao_cmd_lex_c; ao_cmd_lex(); - func = 0; for (cmd = 0; ao_config_vars[cmd].str != NULL; cmd++) if (ao_config_vars[cmd].str[0] == c) { (*ao_config_vars[cmd].set)(); |