From e78281c864ca717c8748f23a2de74ffcc5de07ff Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Thu, 26 Feb 2026 00:20:17 +0100 Subject: [PATCH] Remove unnecessary void cast The ctx variable is used. --- app/src/screen.c | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/screen.c b/app/src/screen.c index d78dff7b..1d03bf91 100644 --- a/app/src/screen.c +++ b/app/src/screen.c @@ -280,7 +280,6 @@ sc_screen_frame_sink_open(struct sc_frame_sink *sink, const AVCodecContext *ctx, const struct sc_stream_session *session) { assert(ctx->pix_fmt == AV_PIX_FMT_YUV420P); - (void) ctx; (void) session; struct sc_screen *screen = DOWNCAST(sink);