From 2daf357206ea00ccec0b2c4a916c40054349581a Mon Sep 17 00:00:00 2001 From: Marc Kleine-Budde Date: Wed, 22 Apr 2015 10:20:08 +0200 Subject: command: timeout: remove unhandled '-t' option This patch removes the option '-t', as it's unhandled in the code since it was added to barebox. Signed-off-by: Marc Kleine-Budde Signed-off-by: Sascha Hauer --- commands/timeout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands/timeout.c') diff --git a/commands/timeout.c b/commands/timeout.c index feca7140d5..3dee9606eb 100644 --- a/commands/timeout.c +++ b/commands/timeout.c @@ -37,7 +37,7 @@ static int do_timeout(int argc, char *argv[]) uint64_t start, second; const char *varname = NULL; - while((opt = getopt(argc, argv, "t:crsav:")) > 0) { + while((opt = getopt(argc, argv, "crsav:")) > 0) { switch(opt) { case 'r': flags |= TIMEOUT_RETURN; -- cgit v1.2.3