diff options
| author | Pali Rohár <[email protected]> | 2021-07-23 11:14:20 +0200 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2021-07-31 09:49:32 +0200 |
| commit | b943eee915d79cbbaf7b4fc6c4c40dec4839380a (patch) | |
| tree | e6096a90b58e3129bcfdc53f54832ccac2784163 | |
| parent | 49a0a3b8b6feb36e95827d41249d3728b67ecced (diff) | |
tools: kwboot: Cosmetic fix - add missing curly brackets
Add missing curly brackets for this else statement.
Signed-off-by: Pali Rohár <[email protected]>
Reviewed-by: Marek Behún <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
Reviewed-by: Chris Packham <[email protected]>
Tested-by: Chris Packham <[email protected]>
| -rw-r--r-- | tools/kwboot.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/kwboot.c b/tools/kwboot.c index 941f4228f98..c0ac4ce19e9 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; } + } } } |
