mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vfmt: change all '$expr' to '${expr}' (#16428)
This commit is contained in:
@@ -8,7 +8,7 @@ fn make_pipe() !(int, int) {
|
||||
$if linux {
|
||||
pipefd := [2]int{}
|
||||
if C.pipe(&pipefd[0]) != 0 {
|
||||
return error('error $C.errno: ' + os.posix_get_error_msg(C.errno))
|
||||
return error('error ${C.errno}: ' + os.posix_get_error_msg(C.errno))
|
||||
}
|
||||
return pipefd[0], pipefd[1]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user