From 2d18d6a7407342295e2e74c60558af8e4ea41024 Mon Sep 17 00:00:00 2001 From: AS-pngg Date: Mon, 29 Dec 2025 14:24:51 +0000 Subject: [PATCH 1/3] Silence unused-but-set variable warning in zvbi decoder --- src/lib_ccx/zvbi/decoder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib_ccx/zvbi/decoder.c b/src/lib_ccx/zvbi/decoder.c index 1109d02a9..9562591b8 100644 --- a/src/lib_ccx/zvbi/decoder.c +++ b/src/lib_ccx/zvbi/decoder.c @@ -548,9 +548,8 @@ void vbi_raw_decoder_resize(vbi_raw_decoder *rd, int *start, unsigned int *count) { - vbi_service_set service_set; vbi3_raw_decoder *rd3; - + vbi_service_set service_set; assert(NULL != rd); assert(NULL != start); assert(NULL != count); @@ -569,6 +568,7 @@ void vbi_raw_decoder_resize(vbi_raw_decoder *rd, rd->count[1] = count[1]; service_set = vbi3_raw_decoder_set_sampling_par(rd3, (vbi_sampling_par *)rd, /* strict */ 0); + (void)service_set; } } From babf3e0a8852955bfc922698db89e892a639449e Mon Sep 17 00:00:00 2001 From: AS-pngg Date: Tue, 30 Dec 2025 10:25:11 +0000 Subject: [PATCH 2/3] FIX: remove unused service_set variable --- src/lib_ccx/zvbi/decoder.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib_ccx/zvbi/decoder.c b/src/lib_ccx/zvbi/decoder.c index 9562591b8..ee760b0e1 100644 --- a/src/lib_ccx/zvbi/decoder.c +++ b/src/lib_ccx/zvbi/decoder.c @@ -549,7 +549,6 @@ void vbi_raw_decoder_resize(vbi_raw_decoder *rd, unsigned int *count) { vbi3_raw_decoder *rd3; - vbi_service_set service_set; assert(NULL != rd); assert(NULL != start); assert(NULL != count); @@ -567,8 +566,7 @@ void vbi_raw_decoder_resize(vbi_raw_decoder *rd, rd->count[0] = count[0]; rd->count[1] = count[1]; - service_set = vbi3_raw_decoder_set_sampling_par(rd3, (vbi_sampling_par *)rd, /* strict */ 0); - (void)service_set; + vbi3_raw_decoder_set_sampling_par(rd3, (vbi_sampling_par *)rd, /* strict */ 0); } } From 29aeb435249af655eee20a141c821bcd85fe1fb1 Mon Sep 17 00:00:00 2001 From: AS-pngg Date: Tue, 30 Dec 2025 15:03:06 +0000 Subject: [PATCH 3/3] Trigger CI / no-op commit