From 9564e4a6d6630e0e65027a5cb543991058f1664f Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sat, 26 Oct 2019 14:18:13 +0200 Subject: [PATCH] Fix formatting in dump_tree --- src/parse_tree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse_tree.cpp b/src/parse_tree.cpp index 6b216a135..e23b6a177 100644 --- a/src/parse_tree.cpp +++ b/src/parse_tree.cpp @@ -285,7 +285,7 @@ static void dump_tree_recursive(const parse_node_tree_t &nodes, const wcstring & if (indent > 0) indent -= 1; } - append_format(*result, L"%2lu - %l2u ", *line, node_idx); + append_format(*result, L"%2lu - %2lu ", *line, node_idx); result->append(indent * spacesPerIndent, L' '); result->append(node.describe()); if (node.child_count > 0) {