diff options
Diffstat (limited to 'container/params.go')
| -rw-r--r-- | container/params.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/container/params.go b/container/params.go index f9862a19..a48eabaf 100644 --- a/container/params.go +++ b/container/params.go @@ -31,7 +31,7 @@ func Receive(key string, e any, fdp *uintptr) (func() error, error) { return nil, ErrReceiveEnv } else { if fd, err := strconv.Atoi(s); err != nil { - return nil, errors.Unwrap(err) + return nil, optionalErrorUnwrap(err) } else { setup = os.NewFile(uintptr(fd), "setup") if setup == nil { |
