aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver.c b/src/driver.c
index a522938..3727f11 100644
--- a/src/driver.c
+++ b/src/driver.c
@@ -59,7 +59,7 @@ static void ast_print (IMP_ASTNode *node, int depth) {
break;
}
case IMP_AST_NT_ASSIGN: {
- printf("%*sASSIGN %s=", indent, "",
+ printf("%*sASSIGN %s = ", indent, "",
node->data.assign.var->data.variable.name);
ast_print(node->data.assign.aexpr, 0);
printf("\n");