Browse Source

Fixed compilation error

migration/RELEASE_1_0_0
Dmitry Stogov 21 years ago
parent
commit
362f3fd7ea
  1. 2
      ext/simplexml/simplexml.c

2
ext/simplexml/simplexml.c

@ -1083,7 +1083,7 @@ static zval *sxe_get_value(zval *z TSRMLS_DC)
MAKE_STD_ZVAL(retval);
if (sxe_object_cast(z, retval, IS_STRING, 0 TSRMLS_CC)==FAILURE) {
if (sxe_object_cast(z, retval, IS_STRING TSRMLS_CC)==FAILURE) {
zend_error(E_ERROR, "Unable to cast node to string");
/* FIXME: Should not be fatal */
}

Loading…
Cancel
Save