From 51a68f9b3e002184b6202567c01bd521b609da1c Mon Sep 17 00:00:00 2001 From: Weiguo Li Date: Thu, 25 Aug 2022 17:51:46 +0800 Subject: [PATCH] lib: Fix extra semicolon after if Signed-off-by: Weiguo Li --- lib/sigevent.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/sigevent.c b/lib/sigevent.c index 0f20bc0270..985bedeb92 100644 --- a/lib/sigevent.c +++ b/lib/sigevent.c @@ -134,8 +134,7 @@ int frr_sigevent_process(void) #ifdef SIGEVENT_BLOCK_SIGNALS if (sigprocmask(SIG_UNBLOCK, &oldmask, NULL) < 0) - ; - return -1; + return -1; #endif /* SIGEVENT_BLOCK_SIGNALS */ return 0; -- 2.39.5