Skip to content

Commit 35b2fa5

Browse files
felipecgitster
authored andcommitted
pretty: trivial style fix
Signed-off-by: Felipe Contreras <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent c447264 commit 35b2fa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pretty.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ void pp_user_info(struct pretty_print_context *pp,
497497
static int is_empty_line(const char *line, int *len_p)
498498
{
499499
int len = *len_p;
500-
while (len && isspace(line[len-1]))
500+
while (len && isspace(line[len - 1]))
501501
len--;
502502
*len_p = len;
503503
return !len;

0 commit comments

Comments
 (0)