Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
base85.c: have SP around arithmetic operators
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Oct 16, 2013
1 parent b1cdfb5 commit 5f050e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base85.c
Expand Up @@ -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;
Expand Down

0 comments on commit 5f050e3

Please sign in to comment.