Skip to content

Commit

Permalink
MFB51: Fixed parameter parsing for setIndent() method.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Alshanetsky committed Dec 17, 2005
1 parent bc2ed13 commit 23005e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/xmlwriter/php_xmlwriter.c
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ PHP_FUNCTION(xmlwriter_set_indent)
zval *this = getThis();

if (this) {
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &pind, &indent) == FAILURE) {
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &indent) == FAILURE) {
return;
}
XMLWRITER_FROM_OBJECT(intern, this);
Expand Down

0 comments on commit 23005e9

Please sign in to comment.