From 0808c4cf527b34635d6919107c965e234298966d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Wed, 2 Oct 2024 16:36:55 +0200 Subject: [PATCH] tests/screen-cast-client: Remove incorrect 'unused' annotations Part-of: --- src/tests/screen-cast-client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/screen-cast-client.c b/src/tests/screen-cast-client.c index 781d2219a..339142a02 100644 --- a/src/tests/screen-cast-client.c +++ b/src/tests/screen-cast-client.c @@ -448,14 +448,14 @@ stream_wait_for_cursor_position (Stream *stream, g_main_context_iteration (NULL, TRUE); } -static G_GNUC_UNUSED void +static void stream_wait_for_streaming (Stream *stream) { while (stream->state != PW_STREAM_STATE_STREAMING) g_main_context_iteration (NULL, TRUE); } -static G_GNUC_UNUSED void +static void stream_wait_for_render (Stream *stream) { int initial_buffer_count = stream->buffer_count;