Skip to content

Commit

Permalink
base85: encode_85() does not use the decode table
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Gruenbacher <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
Andreas Gruenbacher authored and gitster committed Jan 10, 2010
1 parent 75b7e16 commit b0bec51
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions base85.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ int decode_85(char *dst, const char *buffer, int len)

void encode_85(char *buf, const unsigned char *data, int bytes)
{
prep_base85();

say("encode 85");
while (bytes) {
unsigned acc = 0;
Expand Down

0 comments on commit b0bec51

Please sign in to comment.