fix(kernel/formatter): typo
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
0edcea55de
commit
a6dc6060e2
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ struct print_expr_fn {
|
|||
if (macro_num_args(a) > 0) out() << "(";
|
||||
macro_def(a).display(out());
|
||||
for (unsigned i = 0; i < macro_num_args(a); i++) {
|
||||
out() << " "; print(macro_arg(a, i), c);
|
||||
out() << " "; print_child(macro_arg(a, i), c);
|
||||
}
|
||||
if (macro_num_args(a) > 0) out() << ")";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue