Skip to content

Commit 7c64369

Browse files
committed
ext/mbstring: Replace RETVAL_TRUE/RETVAL_FALSE with RETURN_BOOL
1 parent 2708c5a commit 7c64369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/mbstring/php_mbregex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,7 @@ PHP_FUNCTION(mb_ereg_match)
13031303
/* match */
13041304
err = onig_match_with_param(re, (OnigUChar *)string, (OnigUChar *)(string + string_len), (OnigUChar *)string, NULL, 0, mp);
13051305
onig_free_match_param(mp);
1306-
RETVAL_BOOL(err >= 0);
1306+
RETURN_BOOL(err >= 0);
13071307
}
13081308
/* }}} */
13091309

0 commit comments

Comments
 (0)