summaryrefslogtreecommitdiffstats
path: root/daemon/fallocate.c
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/fallocate.c')
-rw-r--r--daemon/fallocate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/fallocate.c b/daemon/fallocate.c
index eb841457..20a75e67 100644
--- a/daemon/fallocate.c
+++ b/daemon/fallocate.c
@@ -36,7 +36,7 @@ do_fallocate (const char *path, int len)
fd = open (path, O_WRONLY | O_CREAT | O_TRUNC | O_NOCTTY, 0666);
CHROOT_OUT;
if (fd == -1) {
- reply_with_perror (path);
+ reply_with_perror ("failed to open %s", path);
return -1;
}