From: Zbigniew Jędrzejewski-Szmek Date: Sat, 17 Dec 2016 23:27:01 +0000 (-0500) Subject: test-compress: fix warning about LZ4_compress_limitedOutput X-Git-Tag: v233~310^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=777fe71fdf89560600d274609bda388f91ff85b7;p=thirdparty%2Fsystemd.git test-compress: fix warning about LZ4_compress_limitedOutput 691b90d465 fixed one spot, but missed the other one. --- diff --git a/src/journal/test-compress.c b/src/journal/test-compress.c index 72cadf1771d..0469393f3bc 100644 --- a/src/journal/test-compress.c +++ b/src/journal/test-compress.c @@ -216,7 +216,11 @@ static void test_lz4_decompress_partial(void) { memset(huge, 'x', HUGE_SIZE); memcpy(huge, "HUGE=", 5); +#if LZ4_VERSION_NUMBER >= 10700 + r = LZ4_compress_default(huge, buf, HUGE_SIZE, buf_size); +#else r = LZ4_compress_limitedOutput(huge, buf, HUGE_SIZE, buf_size); +#endif assert_se(r >= 0); compressed = r; log_info("Compressed %i → %zu", HUGE_SIZE, compressed);