This commit is contained in:
Ted Unangst 2023-07-10 00:16:17 -04:00
parent dea831d23f
commit 43705654d1
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ func Unveil(path string, perms string) {
rv, err := C.unveil(cpath, cperms)
if rv != 0 {
return elog.Fatalf("unveil(%s, %s) failure (%d)", path, perms, err)
elog.Fatalf("unveil(%s, %s) failure (%d)", path, perms, err)
}
}