| Antony Dovgal 2006-08-03, 7:56 am |
| tony2001 Thu Aug 3 10:57:43 2006 UTC
Modified files: (Branch: PHP_5_2)
/ZendEngine2 zend_vm_def.h zend_vm_execute.h
Log:
make it consistent
http://cvs.php.net/viewvc.cgi/ZendE...0&diff_format=u
Index: ZendEngine2/zend_vm_def.h
diff -u ZendEngine2/zend_vm_def.h:1.59.2.29.2.19 ZendEngine2/zend_vm_def.h:1.59.2.29.2.20
--- ZendEngine2/zend_vm_def.h:1.59.2.29.2.19 Thu Aug 3 10:53:15 2006
+++ ZendEngine2/zend_vm_def.h Thu Aug 3 10:57:41 2006
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_vm_def.h,v 1.59.2.29.2.19 2006/08/03 10:53:15 tony2001 Exp $ */
+/* $Id: zend_vm_def.h,v 1.59.2.29.2.20 2006/08/03 10:57:41 tony2001 Exp $ */
/* If you change this file, please regenerate the zend_vm_execute.h and
* zend_vm_opcodes.h files by running:
@@ -2030,7 +2030,7 @@
zend_ptr_stack_3_push(&EG(arg_types_stack), EX(fbc), EX(object), NULL);
if (zend_hash_find(EG(function_table), fname->value.str.val, fname->value.str.len+1, (void **) &EX(function_state).function)==FAILURE) {
- zend_error_noreturn(E_ERROR, "Call to undefined function: %s()", fname->value.str.val);
+ zend_error_noreturn(E_ERROR, "Call to undefined function %s()", fname->value.str.val);
}
EX(object) = NULL;
http://cvs.php.net/viewvc.cgi/ZendE...0&diff_format=u
Index: ZendEngine2/zend_vm_execute.h
diff -u ZendEngine2/zend_vm_execute.h:1.62.2.30.2.19 ZendEngine2/zend_vm_execute.h:1.62.2.30.2.20
--- ZendEngine2/zend_vm_execute.h:1.62.2.30.2.19 Thu Aug 3 10:53:15 2006
+++ ZendEngine2/zend_vm_execute.h Thu Aug 3 10:57:41 2006
@@ -1635,7 +1635,7 @@
zend_ptr_stack_3_push(&EG(arg_types_stack), EX(fbc), EX(object), NULL);
if (zend_hash_find(EG(function_table), fname->value.str.val, fname->value.str.len+1, (void **) &EX(function_state).function)==FAILURE) {
- zend_error_noreturn(E_ERROR, "Call to undefined function: %s()", fname->value.str.val);
+ zend_error_noreturn(E_ERROR, "Call to undefined function %s()", fname->value.str.val);
}
EX(object) = NULL;
|