FS-12032 remove extra semi colon

This commit is contained in:
Seven Du 2019-08-30 20:58:17 +08:00 committed by Andrey Volk
parent 24e0949844
commit 3f075d30ac
1 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ static HANDLE shutdown_event;
static void handle_SIGILL(int sig)
{
int32_t arg = 0;
if (sig) {};
if (sig) {}
/* send shutdown signal to the freeswitch core */
switch_core_session_ctl(SCSC_SHUTDOWN, &arg);
return;
@ -93,7 +93,7 @@ static void handle_SIGILL(int sig)
static void handle_SIGTERM(int sig)
{
int32_t arg = 0;
if (sig) {};
if (sig) {}
/* send shutdown signal to the freeswitch core */
switch_core_session_ctl(SCSC_SHUTDOWN_ELEGANT, &arg);
return;