summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/utils.c b/utils/utils.c
index 57c82eb..c5b9513 100644
--- a/utils/utils.c
+++ b/utils/utils.c
@@ -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;
}
}