diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-10-15 15:27:34 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-10-16 10:27:26 -0700 |
commit | 5f050e3c4ce05de13f24157ca7d3452362e673dc (patch) | |
tree | da8112d53acbedf9266e376178a7e1a4a5801316 | |
parent | archive.c: have SP around arithmetic operators (diff) | |
download | tgif-5f050e3c4ce05de13f24157ca7d3452362e673dc.tar.xz |
base85.c: have SP around arithmetic operators
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | base85.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |