summaryrefslogtreecommitdiff
path: root/avr/main.c
diff options
context:
space:
mode:
authorLeo C2016-06-17 15:46:30 +0200
committerLeo C2016-06-17 20:52:19 +0200
commitbddc7e77b0de0cfd5e7e98f8915552c2c83edb9f (patch)
treeeb6eb372ceade1017af496b3f47b8919545eaabc /avr/main.c
parent4912667be3154f62d3206a47b6e748b0b6281ae3 (diff)
downloadz180-stamp-bddc7e77b0de0cfd5e7e98f8915552c2c83edb9f.zip
Rename getenv_char() --> getenv_str()
Diffstat (limited to 'avr/main.c')
-rw-r--r--avr/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avr/main.c b/avr/main.c
index 423b48a..86dcc50 100644
--- a/avr/main.c
+++ b/avr/main.c
@@ -223,7 +223,7 @@ const char *bootdelay_process(void)
debug("### main_loop entered: bootdelay=%d\n\n", bootdelay);
_delay_ms(20);
- s = getenv_char(PSTR(ENV_BOOTCMD));
+ s = getenv_str(PSTR(ENV_BOOTCMD));
stored_bootdelay = bootdelay;
return s;
}