mirror of
https://github.com/smaeul/u-boot.git
synced 2025-11-28 14:52:28 +00:00
tools: kwboot: Cosmetic fix - add missing curly brackets
Add missing curly brackets for this else statement. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Marek Behún <marek.behun@nic.cz> Reviewed-by: Stefan Roese <sr@denx.de> Reviewed-by: Chris Packham <judge.packham@gmail.com> Tested-by: Chris Packham <judge.packham@gmail.com>
This commit is contained in:
parent
49a0a3b8b6
commit
b943eee915
@ -479,13 +479,14 @@ kwboot_term_pipe(int in, int out, char *quit, int *s)
|
|||||||
return 0;
|
return 0;
|
||||||
buf++;
|
buf++;
|
||||||
nin--;
|
nin--;
|
||||||
} else
|
} else {
|
||||||
while (*s > 0) {
|
while (*s > 0) {
|
||||||
nout = write(out, quit, *s);
|
nout = write(out, quit, *s);
|
||||||
if (nout <= 0)
|
if (nout <= 0)
|
||||||
return -1;
|
return -1;
|
||||||
(*s) -= nout;
|
(*s) -= nout;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user