diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-21 16:13:46 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-21 16:13:46 +0000 |
commit | 5f2da6f219b7373d357cb2a96a779dbaaab58e8f (patch) | |
tree | c9645b326cf83fc04304b6cce286234d086065aa | |
parent | cc44119bf6840dc4a955b7f13c7656cbbb989f5b (diff) | |
download | php-git-5f2da6f219b7373d357cb2a96a779dbaaab58e8f.tar.gz |
Fix Release builds
-rw-r--r-- | Zend/zend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index aec445a431..d592065b2a 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -470,7 +470,7 @@ ZEND_API void _zend_bailout(ZEND_FILE_LINE_D) ELS_FETCH(); if (!EG(bailout_set)) { - zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", ZEND_FILE_LINE_RELAY_C); + zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!" ZEND_FILE_LINE_RELAY_CC); exit(-1); } CG(unclean_shutdown) = 1; |