diff options
Diffstat (limited to 'src/codegen/codegen.c')
| -rw-r--r-- | src/codegen/codegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/codegen.c b/src/codegen/codegen.c index 01c8204..b25c79c 100644 --- a/src/codegen/codegen.c +++ b/src/codegen/codegen.c @@ -461,7 +461,7 @@ void codegen_expression(ParserContext *ctx, ASTNode *node, FILE *out) } fprintf(out, "%s__eq(&", base); codegen_expression(ctx, node->binary.left, out); - fprintf(out, ", "); + fprintf(out, ", &"); codegen_expression(ctx, node->binary.right, out); fprintf(out, ")"); if (strcmp(node->binary.op, "!=") == 0) |
