diff options
author | Hristo Venev <hristo@venev.name> | 2020-06-09 13:31:14 +0000 |
---|---|---|
committer | Hristo Venev <hristo@venev.name> | 2020-06-09 13:31:14 +0000 |
commit | 2ed8d17840a5f02fec13f15f9651f448b61f6a55 (patch) | |
tree | 3b6da851228c6d14bb356517be1ed7347ef610dc | |
parent | b2c4649aaa54ce40e8556b70e812132233f832b7 (diff) |
-rw-r--r-- | compress.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -197,7 +197,7 @@ static int reconstruct(FILE *out, const uint8_t *data, size_t len, struct backre at = buf; while(bytes) { - size_t n = fwrite_unlocked(buf, 1, bytes, out); + size_t n = fwrite_unlocked(at, 1, bytes, out); if(n == 0) { int e = errno; free(buf); |