Style fixes, add a space after if/for/while.
The majority of code in core git appears to use a single space after if/for/while. This is an attempt to bring more code to this standard. These are entirely cosmetic changes. Signed-off-by: Brian Gianforcaro <b.gianfo@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
554555ac7d
commit
eeefa7c90e
@ -1348,7 +1348,7 @@ static void get_ac_line(const char *inbuf, const char *what,
|
||||
/*
|
||||
* Now, convert both name and e-mail using mailmap
|
||||
*/
|
||||
if(map_user(&mailmap, mail+1, mail_len-1, person, tmp-person-1)) {
|
||||
if (map_user(&mailmap, mail+1, mail_len-1, person, tmp-person-1)) {
|
||||
/* Add a trailing '>' to email, since map_user returns plain emails
|
||||
Note: It already has '<', since we replace from mail+1 */
|
||||
mailpos = memchr(mail, '\0', mail_len);
|
||||
|
Reference in New Issue
Block a user