]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fix variable type in mod_nibblebill
authorTravis Cross <tc@traviscross.com>
Sun, 26 May 2013 11:16:58 +0000 (11:16 +0000)
committerTravis Cross <tc@traviscross.com>
Mon, 27 May 2013 07:58:33 +0000 (07:58 +0000)
src/mod/applications/mod_nibblebill/mod_nibblebill.c

index af6f93ce6f4ae9fc80dddbe54f713f3855badd22..a16c51cdfa1bcc5a3694d29af20f5e71e923727b 100755 (executable)
@@ -355,7 +355,7 @@ static void transfer_call(switch_core_session_t *session, char *destination)
 static switch_bool_t bill_event(double billamount, const char *billaccount, switch_channel_t *channel)
 {
        char *sql = NULL, *dsql = NULL;
-       switch_status_t status = SWITCH_FALSE;
+       switch_bool_t status = SWITCH_FALSE;
 
        if (globals.custom_sql_save) {
                if (switch_string_var_check_const(globals.custom_sql_save) || switch_string_has_escaped_data(globals.custom_sql_save)) {