From: Johannes Schindelin Date: Tue, 11 Dec 2018 14:58:10 +0000 (-0800) Subject: help.h: fix coding style X-Git-Tag: v2.20.1~2^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5acea87c3abfa5316fa27476c02e46eded8b26ae;p=git help.h: fix coding style We want a space after the `while` keyword. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- 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); }