cvs: ZendEngine2 / zend_execute.c

[email protected] ("Felipe Pena")
Newsgroups php.zend-engine.cvs
Message-ID <cvsfelipe1204976965@cvsserver>
felipe		Sat Mar  8 11:49:25 2008 UTC

  Modified files:              
    /ZendEngine2	zend_execute.c 
  Log:
  Cosmetics (removed space on error message)
  
  
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_execute.c?r1=1.791&r2=1.792&diff_format=u
Index: ZendEngine2/zend_execute.c
diff -u ZendEngine2/zend_execute.c:1.791 ZendEngine2/zend_execute.c:1.792
--- ZendEngine2/zend_execute.c:1.791	Sat Mar  8 11:41:35 2008
+++ ZendEngine2/zend_execute.c	Sat Mar  8 11:49:24 2008
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: zend_execute.c,v 1.791 2008/03/08 11:41:35 felipe Exp $ */
+/* $Id: zend_execute.c,v 1.792 2008/03/08 11:49:24 felipe Exp $ */
 
 #define ZEND_INTENSIVE_DEBUGGING 0
 
@@ -910,14 +910,14 @@
 			if (zend_u_symtable_find(ht, ztype, offset_key, offset_key_length + 1, (void **) &retval) == FAILURE) {
 				switch (type) {
 					case BP_VAR_R:
-						zend_error(E_NOTICE, "Undefined index:  %R", ztype, offset_key);
+						zend_error(E_NOTICE, "Undefined index: %R", ztype, offset_key);
 						/* break missing intentionally */
 					case BP_VAR_UNSET:
 					case BP_VAR_IS:
 						retval = &EG(uninitialized_zval_ptr);
 						break;
 					case BP_VAR_RW:
-						zend_error(E_NOTICE,"Undefined index:  %R", ztype, offset_key);
+						zend_error(E_NOTICE,"Undefined index: %R", ztype, offset_key);
 						/* break missing intentionally */
 					case BP_VAR_W: {
 							zval *new_zval = &EG(uninitialized_zval);
@@ -946,14 +946,14 @@
 			if (zend_hash_index_find(ht, index, (void **) &retval) == FAILURE) {
 				switch (type) {
 					case BP_VAR_R:
-						zend_error(E_NOTICE,"Undefined offset:  %ld", index);
+						zend_error(E_NOTICE,"Undefined offset: %ld", index);
 						/* break missing intentionally */
 					case BP_VAR_UNSET:
 					case BP_VAR_IS:
 						retval = &EG(uninitialized_zval_ptr);
 						break;
 					case BP_VAR_RW:
-						zend_error(E_NOTICE,"Undefined offset:  %ld", index);
+						zend_error(E_NOTICE,"Undefined offset: %ld", index);
 						/* break missing intentionally */
 					case BP_VAR_W: {
 						zval *new_zval = &EG(uninitialized_zval);
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.