summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-05-10 18:15:49 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2019-05-10 18:15:49 +0200
commit8e8412601f5534abe5a57c4b6d62ab9fb5550ea9 (patch)
tree4f2285fdca21c2bcf11efd3c118aa3d84337b5c2 /commands
parentf44e7eebd5e3022af5659baf81fcdbfe5ce44268 (diff)
parent90df2a955e3c66fee2c59f67d9274e6a9addd9ce (diff)
downloadbarebox-8e8412601f5534abe5a57c4b6d62ab9fb5550ea9.tar.gz
barebox-8e8412601f5534abe5a57c4b6d62ab9fb5550ea9.tar.xz
Merge branch 'for-next/ctrlc'
Diffstat (limited to 'commands')
-rw-r--r--commands/timeout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/timeout.c b/commands/timeout.c
index d197cedd8b..db88900287 100644
--- a/commands/timeout.c
+++ b/commands/timeout.c
@@ -61,7 +61,7 @@ static int do_timeout(int argc, char *argv[])
return COMMAND_ERROR_USAGE;
timeout = simple_strtoul(argv[optind], NULL, 0);
- ret = console_countdown(timeout, flags, str);
+ ret = console_countdown(timeout, flags, NULL, str);
if (varname && str[0])
setenv(varname, str);