diff options
| author | Weiguo Li <liwg06@foxmail.com> | 2022-08-25 17:51:46 +0800 | 
|---|---|---|
| committer | Weiguo Li <liwg06@foxmail.com> | 2022-08-25 17:52:21 +0800 | 
| commit | 51a68f9b3e002184b6202567c01bd521b609da1c (patch) | |
| tree | 85e5fd13cd5e76109f2cfd0f947d9e8abd5030a2 | |
| parent | 8783ed4bb434a6c229408acd6ca3def7b6b1cd73 (diff) | |
lib: Fix extra semicolon after if
Signed-off-by: Weiguo Li <liwg06@foxmail.com>
| -rw-r--r-- | lib/sigevent.c | 3 | 
1 files changed, 1 insertions, 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;  | 
