From a1a8f832f431c20475cb602c44fdd649a81d4a35 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Mon, 22 Apr 2024 16:59:37 +0200 Subject: [PATCH] [winpr,synch] fix extra-semi warning --- winpr/libwinpr/synch/wait.c | 1 - 1 file changed, 1 deletion(-) diff --git a/winpr/libwinpr/synch/wait.c b/winpr/libwinpr/synch/wait.c index 865f58338..f9911757a 100644 --- a/winpr/libwinpr/synch/wait.c +++ b/winpr/libwinpr/synch/wait.c @@ -65,7 +65,6 @@ static struct timespec ts_from_ns(void) struct timespec timeout = { 0 }; timeout.tv_sec = WINPR_TIME_NS_TO_S(ns); timeout.tv_nsec = WINPR_TIME_NS_REM_NS(ns); - ; return timeout; }