aboutsummaryrefslogtreecommitdiffstats
path: root/help.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-12-15 12:24:33 +0900
committerJunio C Hamano <gitster@pobox.com>2018-12-15 12:24:33 +0900
commit916f56d38bc86cf8bed0698afde5051c05e7cc68 (patch)
tree3a0d09409abaea41a184c712095913e305736e05 /help.h
parentbf29f074ed7019abb53398c4cd5659d9f939d9a8 (diff)
parent1c4b985965a4c424e7e5ae4756e139c98183278d (diff)
downloadgit-916f56d38bc86cf8bed0698afde5051c05e7cc68.tar.gz
Merge branch 'js/help-commands-verbose-by-default-fix' into maint
"git help -a" did not work well when an overly long alias is defined, which has been corrected. * js/help-commands-verbose-by-default-fix: help -a: handle aliases with long names gracefully help.h: fix coding style
Diffstat (limited to 'help.h')
-rw-r--r--help.h2
1 files changed, 1 insertions, 1 deletions
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);
}