From: Moriyoshi Koizumi Date: Tue, 30 Sep 2003 00:32:41 +0000 (+0000) Subject: Remove redundant '\n' X-Git-Tag: RELEASE_1_3b2~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ddd49b34c8e0e00026932bc28e70207a408e5afd;p=php Remove redundant '\n' --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index ec1dc09497..10dc52ccb4 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -2608,7 +2608,7 @@ void zend_do_fold_constant(znode *result, znode *constant_name TSRMLS_DC) zval_dtor(&constant_name->u.constant); return; } else { - zend_error(E_COMPILE_ERROR, "Cannot find %s constant in class %s\n", + zend_error(E_COMPILE_ERROR, "Cannot find %s constant in class %s", constant_name->u.constant.value.str.val, CG(active_class_entry)->name); } }