From: Peter Korsgaard Date: Mon, 23 Sep 2013 07:45:56 +0000 (+0200) Subject: toolchain-wrapper: minor code style fixup X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b9558e023055f14860a5e2b5cc5ff36c76c78daa;p=buildroot.git toolchain-wrapper: minor code style fixup Missed from 60cb290475c (add option to print one argument per line). Signed-off-by: Peter Korsgaard --- diff --git a/toolchain/toolchain-external/ext-toolchain-wrapper.c b/toolchain/toolchain-external/ext-toolchain-wrapper.c index dfdfcffbf5..727e322196 100644 --- a/toolchain/toolchain-external/ext-toolchain-wrapper.c +++ b/toolchain/toolchain-external/ext-toolchain-wrapper.c @@ -170,7 +170,7 @@ int main(int argc, char **argv) fprintf(stderr, "Toolchain wrapper executing:"); for (i = 0; args[i]; i++) fprintf(stderr, "%s'%s'", - (debug == 2)?"\n ":" ", args[i]); + (debug == 2) ? "\n " : " ", args[i]); fprintf(stderr, "\n"); } }