diff options
author | Ivan Zhakov <ivan@apache.org> | 2019-05-26 10:49:18 +0000 |
---|---|---|
committer | Ivan Zhakov <ivan@apache.org> | 2019-05-26 10:49:18 +0000 |
commit | 0e47303477c804d955fa910a60c1c5ce4d126545 (patch) | |
tree | 16d58480e266d470e8871e2fbe9eac74ef2e7e4e | |
parent | 051f06b565c59770c4ac11c4cdde8cbd50e31111 (diff) | |
download | apr-0e47303477c804d955fa910a60c1c5ce4d126545.tar.gz |
On 'xmllite' branch: Fix indentation.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/xmllite@1860056 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | xml/apr_xml_xmllite.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/xml/apr_xml_xmllite.c b/xml/apr_xml_xmllite.c index 3506db634..883081894 100644 --- a/xml/apr_xml_xmllite.c +++ b/xml/apr_xml_xmllite.c @@ -574,8 +574,7 @@ static apr_status_t do_parse(apr_xml_parser *parser, parser->xp->input_stream->remaining = len; parser->xp->input_stream->is_final = is_final; - while (TRUE) - { + while (TRUE) { apr_pool_clear(iterpool); status = parser->xp->current_state(parser, iterpool); @@ -584,8 +583,7 @@ static apr_status_t do_parse(apr_xml_parser *parser, } } - if (status == APR_EAGAIN || status == APR_EOF) - { + if (status == APR_EAGAIN || status == APR_EOF) { status = APR_SUCCESS; } |