From aaa6a4f0b5f690adaec2709251d6de85b57b1060 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 9 Feb 2006 17:21:21 +0000 Subject: [PATCH] forgot to return status in demo global state handler test git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@578 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_ivrtest/mod_ivrtest.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mod/applications/mod_ivrtest/mod_ivrtest.c b/src/mod/applications/mod_ivrtest/mod_ivrtest.c index a5803a7333..828498bdcd 100644 --- a/src/mod/applications/mod_ivrtest/mod_ivrtest.c +++ b/src/mod/applications/mod_ivrtest/mod_ivrtest.c @@ -100,6 +100,7 @@ static switch_status my_on_hangup(switch_core_session *session) assert(channel != NULL); switch_console_printf(SWITCH_CHANNEL_CONSOLE, "I globally hooked to [%s] on the hangup event\n", switch_channel_get_name(channel)); + return SWITCH_STATUS_SUCCESS; }