diff options
author | Anatol Belski <ab@php.net> | 2017-07-23 17:38:28 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2017-07-23 17:38:28 +0200 |
commit | 78944bdfc6452624f9075b9e7e550cfa9c7ccdc3 (patch) | |
tree | b7875553a85d9eaa019ef2b568fd13bcbbfb9439 | |
parent | 6809be20902bf83a9d21e9658b07d3365557ffe6 (diff) | |
download | php-git-78944bdfc6452624f9075b9e7e550cfa9c7ccdc3.tar.gz |
remove cast
-rw-r--r-- | ext/mbstring/mbstring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index 561794cbb6..92741a2354 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -3498,7 +3498,7 @@ PHP_FUNCTION(mb_detect_encoding) } if (ZEND_NUM_ARGS() < 3) { - strict = (zend_bool)MBSTRG(strict_detection); + strict = MBSTRG(strict_detection); } if (size > 0 && list != NULL) { |