Skip to content

Commit

Permalink
help.h: fix coding style
Browse files Browse the repository at this point in the history
We want a space after the `while` keyword.

Signed-off-by: Johannes Schindelin <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
dscho authored and gitster committed Dec 12, 2018
1 parent 26c7d06 commit 5acea87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion help.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct cmdnames {

static inline void mput_char(char c, unsigned int num)
{
while(num--)
while (num--)
putchar(c);
}

Expand Down

0 comments on commit 5acea87

Please sign in to comment.