summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2016-10-14 10:53:40 +0200
committerRemi Collet <remi@php.net>2016-10-14 10:53:40 +0200
commite1f5b6d8dfe1543205d5b45d3dcf1d34f5e2e420 (patch)
tree95daaeffe4b3208df7f25f8913c061ba215e9bec
parentf7bf9650aa516ba6ddc7ed5df185e3b4297a7df5 (diff)
downloadphp-git-e1f5b6d8dfe1543205d5b45d3dcf1d34f5e2e420.tar.gz
use zend_error instead of zend_error_noreturn
-rw-r--r--ext/bcmath/libbcmath/src/outofmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bcmath/libbcmath/src/outofmem.c b/ext/bcmath/libbcmath/src/outofmem.c
index 05fa484e11..ba92450146 100644
--- a/ext/bcmath/libbcmath/src/outofmem.c
+++ b/ext/bcmath/libbcmath/src/outofmem.c
@@ -41,5 +41,5 @@
void bc_out_of_memory (void)
{
- zend_error_noreturn(E_ERROR, "bcmath: out of memory!");
+ zend_error(E_ERROR, "bcmath: out of memory!");
}