sniper Tue Jan 20 20:09:42 2004 EDT
Modified files:
/php-src/ext/simplexml simplexml.c
Log:
Goto targets should not be indented (some compilers choke on this, iirc)
http://cvs.php.net/diff.php/php-src/ext/simplexml/simplexml.c?r1=1.118&r2=1.119&ty=u
Index: php-src/ext/simplexml/simplexml.c
diff -u php-src/ext/simplexml/simplexml.c:1.118 php-src/ext/simplexml/simplexml.c:1.119
--- php-src/ext/simplexml/simplexml.c:1.118 Tue Jan 20 00:31:50 2004
+++ php-src/ext/simplexml/simplexml.c Tue Jan 20 20:09:41 2004
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: simplexml.c,v 1.118 2004/01/20 05:31:50 sterling Exp $ */
+/* $Id: simplexml.c,v 1.119 2004/01/21 01:09:41 sniper Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -211,7 +211,7 @@
break;
}
}
- next_iter:
+next_iter:
node = node->next;
}
if (node) {
@@ -1529,7 +1529,7 @@
{
php_info_print_table_start();
php_info_print_table_header(2, "Simplexml support", "enabled");
- php_info_print_table_row(2, "Revision", "$Revision: 1.118 $");
+ php_info_print_table_row(2, "Revision", "$Revision: 1.119 $");
php_info_print_table_row(2, "Schema support",
#ifdef LIBXML_SCHEMAS_ENABLED
"enabled");
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php