Fix indentation - dedup - deduplicating backup program
HTML git clone git://bitreich.org/dedup/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/dedup/
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
DIR LICENSE
---
DIR commit 0f199a22bb342e2e9873cd51766f31d66adb4327
DIR parent 36f8eba403de0699cb89e68a40116aa0789ca5dc
HTML Author: sin <sin@2f30.org>
Date: Sun, 7 Apr 2019 13:37:04 +0100
Fix indentation
Diffstat:
M compress.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/compress.c b/compress.c
@@ -134,7 +134,7 @@ lz4_decompr(struct compr_ctx *ctx, const void *in, void *out,
int n;
n = LZ4_decompress_safe((char *)in, (char *)out, insize,
- outsize);
+ outsize);
if (n < 0)
errx(1, "LZ4_decompress_safe failed");
return n;