Make indentation consistent

This commit is contained in:
Philip Prindeville 2023-08-18 18:43:23 -06:00 committed by Olof Hagsand
parent 3bd440eaaa
commit 79fac840ba

View file

@ -290,7 +290,7 @@ xml_dump1(FILE *f,
if (xml_type(x) != CX_ELMNT) if (xml_type(x) != CX_ELMNT)
return 0; return 0;
fprintf(stderr, "%*s %s(%s)", fprintf(stderr, "%*s %s(%s)",
indent*3, "", indent*PRETTYPRINT_INDENT, "",
// x, // x,
xml_name(x), xml_name(x),
xml_type2str(xml_type(x))); xml_type2str(xml_type(x)));