func wrapErrno()

in quark.go [150:156]


func wrapErrno(err error) error {
	if err == nil {
		err = ErrUndefined
	}

	return err
}