1
0
mirror of https://git.tukaani.org/xz.git synced 2025-12-11 16:08:45 +00:00

Tests: Remove an unwanted semicolon from a macro definition

It didn't affect control flow.

Fixes: fe3bd438fb11 ("Tests: Fix memory leaks in test_block_header.")
This commit is contained in:
Lasse Collin 2025-11-26 13:50:57 +02:00
parent 0f41a28bfa
commit 524f6a7384
No known key found for this signature in database
GPG Key ID: 38EE757D69184620

View File

@ -27,7 +27,7 @@ do { \
memzero(&(block), sizeof(lzma_block)); \
(block).filters = filters_; \
(block).check = LZMA_CHECK_CRC32; \
} while (0);
} while (0)
#ifdef HAVE_ENCODERS