summaryrefslogtreecommitdiff
path: root/base85.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-10-15 22:27:34 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-10-16 17:27:26 (GMT)
commit5f050e3c4ce05de13f24157ca7d3452362e673dc (patch)
treeda8112d53acbedf9266e376178a7e1a4a5801316 /base85.c
parentb1cdfb54f10ca64dc57be0d9184dcb4c9c069eac (diff)
downloadgit-5f050e3c4ce05de13f24157ca7d3452362e673dc.zip
git-5f050e3c4ce05de13f24157ca7d3452362e673dc.tar.gz
git-5f050e3c4ce05de13f24157ca7d3452362e673dc.tar.bz2
base85.c: have SP around arithmetic operators
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'base85.c')
-rw-r--r--base85.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/base85.c b/base85.c
index 781b575..5ca601e 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;