diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2018-12-11 06:58:10 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-12-12 17:18:29 +0900 |
commit | 5acea87c3abfa5316fa27476c02e46eded8b26ae (patch) | |
tree | 3feff3793c6ef945d74672fee2605f9f871b0434 | |
parent | help -a: improve and make --verbose default (diff) | |
download | tgif-5acea87c3abfa5316fa27476c02e46eded8b26ae.tar.xz |
help.h: fix coding style
We want a space after the `while` keyword.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | help.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ struct cmdnames { static inline void mput_char(char c, unsigned int num) { - while(num--) + while (num--) putchar(c); } |