9
0
Fork 0

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 <mkl@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Marc Kleine-Budde 2015-04-22 10:20:08 +02:00 committed by Sascha Hauer
parent 143eb1d3b4
commit 2daf357206
1 changed files with 1 additions and 1 deletions

View File

@ -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;