From 5acea87c3abfa5316fa27476c02e46eded8b26ae Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 11 Dec 2018 06:58:10 -0800 Subject: [PATCH] help.h: fix coding style We want a space after the `while` keyword. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- help.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help.h b/help.h index 9eab6a3f89..a141e209ae 100644 --- a/help.h +++ b/help.h @@ -15,7 +15,7 @@ struct cmdnames { static inline void mput_char(char c, unsigned int num) { - while(num--) + while (num--) putchar(c); } -- 2.11.4.GIT