summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPali Rohár <pali@kernel.org>2021-07-23 12:14:20 +0300
committerStefan Roese <sr@denx.de>2021-07-31 10:49:32 +0300
commitb943eee915d79cbbaf7b4fc6c4c40dec4839380a (patch)
treee6096a90b58e3129bcfdc53f54832ccac2784163 /tools
parent49a0a3b8b6feb36e95827d41249d3728b67ecced (diff)
downloadu-boot-b943eee915d79cbbaf7b4fc6c4c40dec4839380a.tar.xz
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>
Diffstat (limited to 'tools')
-rw-r--r--tools/kwboot.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/kwboot.c b/tools/kwboot.c
index 941f4228f9..c0ac4ce19e 100644
--- a/tools/kwboot.c
+++ b/tools/kwboot.c
@@ -479,13 +479,14 @@ kwboot_term_pipe(int in, int out, char *quit, int *s)
return 0;
buf++;
nin--;
- } else
+ } else {
while (*s > 0) {
nout = write(out, quit, *s);
if (nout <= 0)
return -1;
(*s) -= nout;
}
+ }
}
}