cmd: load: Fix code indentation

Reported by smatch like:
cmd/load.c:228 read_record() warn: inconsistent indenting

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Michal Simek 2020-12-01 13:58:28 +01:00
parent d42ab39f58
commit e7fcfef431

View File

@ -228,12 +228,11 @@ static int read_record(char *buf, ulong len)
*p = c;
}
/* Check for the console hangup (if any different from serial) */
if (gd->jt->getc != getchar) {
if (ctrlc()) {
return (-1);
/* Check for the console hangup (if any different from serial) */
if (gd->jt->getc != getchar) {
if (ctrlc())
return (-1);
}
}
}
/* line too long - truncate */