From: Junio C Hamano Date: Tue, 15 Oct 2013 22:27:34 +0000 (-0700) Subject: base85.c: have SP around arithmetic operators X-Git-Tag: v1.8.5-rc0~14^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5f050e3c4ce05de13f24157ca7d3452362e673dc;p=git base85.c: have SP around arithmetic operators Signed-off-by: Junio C Hamano --- diff --git a/base85.c b/base85.c index 781b5754f0..5ca601ee14 100644 --- a/base85.c +++ b/base85.c @@ -41,7 +41,7 @@ int decode_85(char *dst, const char *buffer, int len) { prep_base85(); - say2("decode 85 <%.*s>", len/4*5, buffer); + say2("decode 85 <%.*s>", len / 4 * 5, buffer); while (len) { unsigned acc = 0; int de, cnt = 4;