Merge pull request #3967 from thetarnav/remove-space

Remove space in indentation
This commit is contained in:
Laytan
2024-07-23 13:58:50 +02:00
committed by GitHub

View File

@@ -786,7 +786,7 @@ execve :: proc "contextless" (name: cstring, argv: [^]cstring, envp: [^]cstring)
return Errno(-ret)
} else {
ret := syscall(SYS_execveat, AT_FDCWD, cast(rawptr) name, cast(rawptr) argv, cast(rawptr) envp, i32(0))
return Errno(-ret)
return Errno(-ret)
}
}