From fc2d61e0c89a6e3001ac47bade120f9ef5b11f7f Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 31 Aug 2022 20:19:32 -0700 Subject: [PATCH] mark count with unused attribute This may throw a warning with clang-15+ when devel logs are disabled Fixes ../../../xrdp-0.9.19/sesman/chansrv/chansrv.c:198:9: error: variable 'count' set but not used [-Werror,-Wunused-but-set-variable] Signed-off-by: Khem Raj --- sesman/chansrv/chansrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sesman/chansrv/chansrv.c b/sesman/chansrv/chansrv.c index aeb4e183..80f19b22 100644 --- a/sesman/chansrv/chansrv.c +++ b/sesman/chansrv/chansrv.c @@ -197,7 +197,7 @@ check_timeout(void) struct timeout_obj *temp_tobj; int count; tui32 now; - + UNUSED_VAR(count); LOG_DEVEL(LOG_LEVEL_DEBUG, "check_timeout:"); count = 0; tobj = g_timeout_head;