Merge pull request #11859 from liwg06/master.fix.extra.semicolon

lib: Fix extra semicolon after if
This commit is contained in:
Mark Stapp 2022-08-25 08:53:36 -04:00 committed by GitHub
commit d4fc18584b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;