My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1cdfb5
)
base85.c: have SP around arithmetic operators
author
Junio C Hamano
<gitster@pobox.com>
Tue, 15 Oct 2013 22:27:34 +0000
(15:27 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 16 Oct 2013 17:27:26 +0000
(10:27 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
base85.c
patch
|
blob
|
history
diff --git
a/base85.c
b/base85.c
index
781b575
..
5ca601e
100644
(file)
--- 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;