From 3f075d30acd0677eeb908cab20b1aa2271369d4a Mon Sep 17 00:00:00 2001 From: Seven Du Date: Fri, 30 Aug 2019 20:58:17 +0800 Subject: [PATCH] FS-12032 remove extra semi colon --- src/switch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;