]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
forgot to return status in demo global state handler test
authorAnthony Minessale <anthony.minessale@gmail.com>
Thu, 9 Feb 2006 17:21:21 +0000 (17:21 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Thu, 9 Feb 2006 17:21:21 +0000 (17:21 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@578 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_ivrtest/mod_ivrtest.c

index a5803a7333381370296e6604f871283f9145e5bf..828498bdcd610caf0bb193daf6e22f071fcd22c6 100644 (file)
@@ -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;
 
 }