Fix misplaced brackets in "if" with assignment + comparison

This commit is contained in:
Tomasz Ostrowski 2022-11-27 23:13:09 +01:00 committed by GitHub
parent cfe5c4fecc
commit 3cece6949a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -650,7 +650,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_db_load)
globals.pool = pool;
if ((status = do_config() != SWITCH_STATUS_SUCCESS)) {
if ((status = do_config()) != SWITCH_STATUS_SUCCESS) {
return status;
}