summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcorvid <devnull@localhost>2014-12-21 20:34:19 +0000
committercorvid <devnull@localhost>2014-12-21 20:34:19 +0000
commit79d3db9a8d5d1cc4e89954aefd2194f61aac45d9 (patch)
tree9e914ad817aa068e7710aa18949b2436d222247f
parentae04d50269ea70e5e17d0975039276c0eb24de0a (diff)
redundant ';'
-rw-r--r--src/decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decode.c b/src/decode.c
index 76dd6ef7..6d838d41 100644
--- a/src/decode.c
+++ b/src/decode.c
@@ -216,7 +216,7 @@ static Dstr *Decode_deflate(Decode *dc, const char *instr, int inlen)
dStr_free(output, 1);
(void)inflateEnd(zs);
dFree(dc->state);
- dc->state = zs = dNew(z_stream, 1);;
+ dc->state = zs = dNew(z_stream, 1);
zs->zalloc = NULL;
zs->zfree = NULL;
zs->next_in = NULL;