mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
darwin: fix if ()
warning
This commit is contained in:
parent
473ffb5489
commit
8fbbf488ab
@ -41,7 +41,7 @@ pub fn resource_path() string {
|
|||||||
mut buffer := malloc(buffer_size)
|
mut buffer := malloc(buffer_size)
|
||||||
buffer[0] = 0
|
buffer[0] = 0
|
||||||
conv_result := C.CFURLGetFileSystemRepresentation(resource_dir_url, true, buffer, buffer_size)
|
conv_result := C.CFURLGetFileSystemRepresentation(resource_dir_url, true, buffer, buffer_size)
|
||||||
if(conv_result == 0) {
|
if conv_result == 0 {
|
||||||
panic('CFURLGetFileSystemRepresentation failed')
|
panic('CFURLGetFileSystemRepresentation failed')
|
||||||
}
|
}
|
||||||
result := string(buffer)
|
result := string(buffer)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user