summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2016-10-14 10:53:40 +0200
committerFerenc Kovacs <tyra3l@gmail.com>2016-10-14 13:01:22 +0200
commit49fc016eb92b4672460472c90eb3b757a17d3261 (patch)
tree92e10b88ac65c426b789163d516914de349db46a
parent7de5c80d14799fadab6946a9a1b0d7a349d8ca4f (diff)
downloadphp-git-49fc016eb92b4672460472c90eb3b757a17d3261.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!");
}