]> 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>
Wed, 29 May 2013 02:48:11 +0000 (02:48 +0000)
src/mod/applications/mod_nibblebill/mod_nibblebill.c

index cdf022b2b9b2f7308fe13974c5b91d37fd41631f..3b5703a9e2c7811446d988ff8a07cbd47c4eb344 100755 (executable)
@@ -337,7 +337,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)) {