cast to transmute

This commit is contained in:
gingerBill
2024-06-29 12:14:21 +01:00
parent e46d772b6d
commit b9861a0cf6

View File

@@ -658,8 +658,7 @@ absolute_path_from_relative :: proc(rel: string) -> (path: string, err: Errno) {
}
defer _unix_free(path_ptr)
path_cstr := transmute(cstring)path_ptr
path = strings.clone( string(path_cstr) )
path = strings.clone(string(cstring(path_ptr)))
return path, ERROR_NONE
}