]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix compiler warning for implicit convertion
authorSeven Du <dujinfang@gmail.com>
Sun, 1 Jun 2014 00:09:49 +0000 (08:09 +0800)
committerSeven Du <dujinfang@gmail.com>
Sun, 1 Jun 2014 00:09:49 +0000 (08:09 +0800)
src/mod/codecs/mod_opus/mod_opus.c

index 7fae227ab7cfc7d25246630264e93ad81c4bd19e..cb9b558a488195c362db273317f4923a55af1de0 100644 (file)
@@ -439,7 +439,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_opus_load)
        int bits = 0;
        char *dft_fmtp = NULL;
        opus_codec_settings_t settings = { 0 };
-    switch_status_t status = SWITCH_FALSE;
+    switch_status_t status = SWITCH_STATUS_SUCCESS;
     
        if ((status = opus_load_config(SWITCH_FALSE)) != SWITCH_STATUS_SUCCESS) {
                return status;