mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-16 06:54:03 +00:00
Fix formatting in dump_tree
This commit is contained in:
parent
4a1edbd3cb
commit
9564e4a6d6
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue