]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix clang warning about control reaches end of non-void function
authorMichael Jerris <mike@jerris.com>
Tue, 18 Mar 2014 21:26:59 +0000 (17:26 -0400)
committerMichael Jerris <mike@jerris.com>
Tue, 18 Mar 2014 21:26:59 +0000 (17:26 -0400)
src/mod/event_handlers/mod_event_zmq/mod_event_zmq.cpp

index b85acbf0e0d848fe0e9f6967ce3051da303b1827..e29e710f13e20522b2c2908cfcad1bdc915a7774 100644 (file)
@@ -187,6 +187,7 @@ SWITCH_MODULE_SHUTDOWN_FUNCTION(shutdown) {
        } catch(...) { // Exceptions must not propogate to C caller
                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Unknown error shutting down module\n");
        }
+       return SWITCH_STATUS_SUCCESS;
 }
 
 }