fix clang warning about control reaches end of non-void function

This commit is contained in:
Michael Jerris 2014-03-18 17:26:59 -04:00
parent e63140a4d3
commit 99dcbf0e80
1 changed files with 1 additions and 0 deletions

View 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;
}
}