fixed: mismatched pointer type
This commit is contained in:
parent
b91c277ac4
commit
f16e2cfbaa
|
@ -63,7 +63,7 @@ void run_backend_codegen() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void* code = NULL;
|
void* code = NULL;
|
||||||
err = generate_code(root, &code);
|
err = generate_code(NULL, &code);
|
||||||
if (err.kind != Success) {
|
if (err.kind != Success) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue