Skip to content

Commit

Permalink
🎨 windoz
Browse files Browse the repository at this point in the history
  • Loading branch information
fennecdjay committed Jan 29, 2024
1 parent 8fbe63f commit 9250ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast_new.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ static AST_NEW(Exp, prim, const struct loc_t_ pos) {
return a;
}

AST_NEW(Exp, prim_int, const unsigned long i, const struct loc_t_ pos) {
AST_NEW(Exp, prim_int, const m_uint i, const struct loc_t_ pos) {
Exp a = new_prim(p, pos);
a->d.prim.prim_type = ae_prim_num;
a->d.prim.d.gwint.num = i;
Expand Down

0 comments on commit 9250ae0

Please sign in to comment.