]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-12032 remove extra semi colon
authorSeven Du <dujinfang@gmail.com>
Fri, 30 Aug 2019 12:58:17 +0000 (20:58 +0800)
committerAndrey Volk <andywolk@gmail.com>
Mon, 30 Dec 2019 19:57:16 +0000 (23:57 +0400)
src/switch.c

index 6a56fd90c55458b5acdd20d0c940d490779b8ca9..22f780db6347b94b2dfe3f7a711546d51e9cf41c 100644 (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;