1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: fix linux-cross job; os.real_path cleanup

This commit is contained in:
Delyan Angelov
2021-06-08 18:34:15 +03:00
parent f9c4365dc7
commit 95cf120e2e
2 changed files with 12 additions and 40 deletions

View File

@@ -263,7 +263,7 @@ pub fn malloc(n int) &byte {
[unsafe]
pub fn v_realloc(b &byte, n int) &byte {
$if trace_realloc ? {
C.fprintf(C.stderr, c'v_realloc new_size: %6d\n', new_size)
C.fprintf(C.stderr, c'v_realloc %6d\n', n)
}
mut new_ptr := &byte(0)
$if prealloc {