hush: fix preprocessor directives indentation

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2019-11-28 10:28:14 +01:00
parent 1b76ffaae4
commit 259747caa7

View File

@ -11628,7 +11628,7 @@ static int FAST_FUNC builtin_wait(char **argv)
ret = G.last_bg_pid_exitcode; ret = G.last_bg_pid_exitcode;
} else { } else {
/* Example: "wait 1". mimic bash message */ /* Example: "wait 1". mimic bash message */
bb_error_msg("wait: pid %d is not a child of this shell", (int)pid); bb_error_msg("wait: pid %u is not a child of this shell", (unsigned)pid);
} }
} else { } else {
/* ??? */ /* ??? */