From: Felipe Contreras Date: Thu, 31 Oct 2013 09:25:42 +0000 (-0600) Subject: pretty: trivial style fix X-Git-Tag: v1.8.5-rc1~1^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=35b2fa5ba3090d56d318acd206204e61b6a3281c;p=thirdparty%2Fgit.git pretty: trivial style fix Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/pretty.c b/pretty.c index b4e32b74d3..962e82be86 100644 --- a/pretty.c +++ b/pretty.c @@ -497,7 +497,7 @@ void pp_user_info(struct pretty_print_context *pp, static int is_empty_line(const char *line, int *len_p) { int len = *len_p; - while (len && isspace(line[len-1])) + while (len && isspace(line[len - 1])) len--; *len_p = len; return !len;