From 35f2d3b6b123dec09b28feae1516382786fa6f66 Mon Sep 17 00:00:00 2001 From: "Ralf S. Engelschall" Date: Mon, 1 Jun 2009 11:11:46 +0000 Subject: [PATCH] align coding style with style(9) to avoid misunderstandings --- bin/sh/exec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/sh/exec.c b/bin/sh/exec.c index e11470ff728..8989ead18be 100644 --- a/bin/sh/exec.c +++ b/bin/sh/exec.c @@ -187,7 +187,8 @@ padvance(char **path, char *name) if (*path == NULL) return NULL; start = *path; - for (p = start ; *p && *p != ':' && *p != '%' ; p++); + for (p = start; *p && *p != ':' && *p != '%'; p++) + ; /* nothing */ len = p - start + strlen(name) + 2; /* "2" is for '/' and '\0' */ while (stackblocksize() < len) growstackblock();