My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26c7d06
)
help.h: fix coding style
author
Johannes Schindelin
<johannes.schindelin@gmx.de>
Tue, 11 Dec 2018 14:58:10 +0000
(06:58 -0800)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 12 Dec 2018 08:18:29 +0000
(17:18 +0900)
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>
help.h
patch
|
blob
|
history
diff --git
a/help.h
b/help.h
index
9eab6a3
..
a141e20
100644
(file)
--- 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);
}