mirror of
https://github.com/sigmasternchen/macrofuck
synced 2025-03-15 07:08:56 +00:00
chore: Add variable initialization to avoid compiler warning
This commit is contained in:
parent
db26cc5182
commit
35aa317fde
1 changed files with 1 additions and 1 deletions
|
@ -361,7 +361,7 @@ region_t* codegen_calc_expr(FILE* out, scope_t* scope, struct calc_expression ex
|
|||
region_t* operand1 = codegen_expr(out, scope, expr.operand1);
|
||||
region_t* operand2 = codegen_expr(out, scope, expr.operand2);
|
||||
|
||||
region_t* result;
|
||||
region_t* result = NULL;
|
||||
|
||||
switch (expr.operator) {
|
||||
case ADDITION:
|
||||
|
|
Loading…
Reference in a new issue