lib/xzembed/xz_dec_bcj: Silence warning when no BCJ is available

BCJ is not available for all platforms hence arguments may end up unused.

Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
Vladimir Serbinenko 2024-09-03 20:58:48 +03:00 committed by Daniel Kiper
parent e61157bbd2
commit f0710d2d8f

View File

@ -353,7 +353,7 @@ static noinline_for_stack size_t bcj_sparc(
* avoid pointers to static data (at least on x86).
*/
static void bcj_apply(struct xz_dec_bcj *s,
uint8_t *buf, size_t *pos, size_t size)
uint8_t *buf __attribute__((unused)), size_t *pos, size_t size __attribute__((unused)))
{
size_t filtered;