Fix a compilation problem with --minimum

For https://bugzilla.gnome.org/show_bug.cgi?id=636750
Moved a #endif /* LIBXML_OUTPUT_ENABLED */ a few lines down
to avoid reference an undefined variable
This commit is contained in:
Brandon Slack 2012-05-11 10:50:59 +08:00 committed by Daniel Veillard
parent 399aaba14b
commit 0c7109c81f

View File

@ -3365,11 +3365,11 @@ main(int argc, char **argv) {
i++;
#ifdef LIBXML_OUTPUT_ENABLED
format = atoi(argv[i]);
#endif /* LIBXML_OUTPUT_ENABLED */
if (format == 1) {
noblanks++;
xmlKeepBlanksDefault(0);
}
#endif /* LIBXML_OUTPUT_ENABLED */
}
#ifdef LIBXML_READER_ENABLED
else if ((!strcmp(argv[i], "-stream")) ||