summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan@13f79535-47bb-0310-9956-ffa450edef68>2019-05-26 10:49:18 +0000
committerivan <ivan@13f79535-47bb-0310-9956-ffa450edef68>2019-05-26 10:49:18 +0000
commit0a8c78e105f21e414e9661abc0dd9ae4c3274742 (patch)
tree16d58480e266d470e8871e2fbe9eac74ef2e7e4e
parent6f7a051960ebb05cf8287aa1e1bcd258a5877364 (diff)
downloadlibapr-0a8c78e105f21e414e9661abc0dd9ae4c3274742.tar.gz
On 'xmllite' branch: Fix indentation.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/xmllite@1860056 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--xml/apr_xml_xmllite.c6
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;
}