mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-07-11 01:33:41 +00:00
FS-12032 remove extra semi colon
This commit is contained in:
parent
24e0949844
commit
3f075d30ac
@ -84,7 +84,7 @@ static HANDLE shutdown_event;
|
|||||||
static void handle_SIGILL(int sig)
|
static void handle_SIGILL(int sig)
|
||||||
{
|
{
|
||||||
int32_t arg = 0;
|
int32_t arg = 0;
|
||||||
if (sig) {};
|
if (sig) {}
|
||||||
/* send shutdown signal to the freeswitch core */
|
/* send shutdown signal to the freeswitch core */
|
||||||
switch_core_session_ctl(SCSC_SHUTDOWN, &arg);
|
switch_core_session_ctl(SCSC_SHUTDOWN, &arg);
|
||||||
return;
|
return;
|
||||||
@ -93,7 +93,7 @@ static void handle_SIGILL(int sig)
|
|||||||
static void handle_SIGTERM(int sig)
|
static void handle_SIGTERM(int sig)
|
||||||
{
|
{
|
||||||
int32_t arg = 0;
|
int32_t arg = 0;
|
||||||
if (sig) {};
|
if (sig) {}
|
||||||
/* send shutdown signal to the freeswitch core */
|
/* send shutdown signal to the freeswitch core */
|
||||||
switch_core_session_ctl(SCSC_SHUTDOWN_ELEGANT, &arg);
|
switch_core_session_ctl(SCSC_SHUTDOWN_ELEGANT, &arg);
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user