From: Seven Du Date: Fri, 30 Aug 2019 12:58:17 +0000 (+0800) Subject: FS-12032 remove extra semi colon X-Git-Tag: v1.10.2^2~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f075d30acd0677eeb908cab20b1aa2271369d4a;p=thirdparty%2Ffreeswitch.git FS-12032 remove extra semi colon --- diff --git a/src/switch.c b/src/switch.c index 6a56fd90c5..22f780db63 100644 --- a/src/switch.c +++ b/src/switch.c @@ -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;