commit 0f199a22bb342e2e9873cd51766f31d66adb4327 parent 36f8eba403de0699cb89e68a40116aa0789ca5dc 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(-)
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;