procd: Remove redundant errno variable in several printf functions.
[project/procd.git] / utils / utils.c
index e239eda..c5b9513 100644 (file)
@@ -203,8 +203,8 @@ int patch_stdio(const char *device)
 
        for (fd = STDIN_FILENO; fd <= STDERR_FILENO; fd++) {
                if (patch_fd(device, fd, fd ? O_WRONLY : O_RDONLY)) {
-                       ERROR("Failed to redirect %s to %s: %d (%s)\n",
-                             fdname[fd], device, errno, strerror(errno));
+                       ERROR("Failed to redirect %s to %s: %m\n",
+                             fdname[fd], device);
                        rv = -1;
                }
        }