tFix indentation - dedup - deduplicating backup program
(HTM) git clone git://git.z3bra.org/dedup.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 0f199a22bb342e2e9873cd51766f31d66adb4327
(DIR) parent 36f8eba403de0699cb89e68a40116aa0789ca5dc
(HTM) 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
t@@ -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;