aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/images/utils_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/images/utils_linux.go')
-rw-r--r--cmd/podman/images/utils_linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/images/utils_linux.go b/cmd/podman/images/utils_linux.go
index 5923716ec..935a45667 100644
--- a/cmd/podman/images/utils_linux.go
+++ b/cmd/podman/images/utils_linux.go
@@ -26,7 +26,7 @@ func setupPipe() (string, func() <-chan error, error) {
if e := os.RemoveAll(pipeDir); e != nil {
logrus.Errorf("Removing named pipe: %q", e)
}
- return "", nil, fmt.Errorf("error creating named pipe: %w", err)
+ return "", nil, fmt.Errorf("creating named pipe: %w", err)
}
go func() {
fpipe, err := os.Open(pipePath)