test-compress: fix warning about LZ4_compress_limitedOutput

691b90d465 fixed one spot, but missed the other one.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2016-12-17 18:27:01 -05:00
parent eb56bec413
commit 777fe71fdf

View file

@ -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);