mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: fix more test-all failures
This commit is contained in:
@ -22,7 +22,7 @@ fn mm_alloc(size u64) (&byte, Errno) {
|
||||
return &u8(0), e
|
||||
}
|
||||
|
||||
fn mm_free(addr &byte) Errno {
|
||||
fn mm_free(addr &u8) Errno {
|
||||
unsafe {
|
||||
ap := &u64(addr - sizeof(u64))
|
||||
size := *ap
|
||||
|
Reference in New Issue
Block a user