Browse Source

base85.c: have SP around arithmetic operators

Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Junio C Hamano 11 years ago
parent
commit
5f050e3c4c
  1. 2
      base85.c

2
base85.c

@ -41,7 +41,7 @@ int decode_85(char *dst, const char *buffer, int len) @@ -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;

Loading…
Cancel
Save