procd: Remove redundant errno variable in several printf functions.
[project/procd.git] / utils / utils.c
index 57c82ebbd01510dbae27dfd3bd322693fdd47f49..c5b951356a7e0251e11f227b2693f6ecce108f50 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 (%m)\n",
-                             fdname[fd], device, errno);
+                       ERROR("Failed to redirect %s to %s: %m\n",
+                             fdname[fd], device);
                        rv = -1;
                }
        }