diff options
Diffstat (limited to 'daemon/fsck.c')
-rw-r--r-- | daemon/fsck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/fsck.c b/daemon/fsck.c index 71390949..932f1c57 100644 --- a/daemon/fsck.c +++ b/daemon/fsck.c @@ -34,7 +34,7 @@ do_fsck (const char *fstype, const char *device) r = commandr (NULL, &err, "/sbin/fsck", "-a", "-t", fstype, device, NULL); if (r == -1) { - reply_with_error ("fsck: %s: %s", device, err); + reply_with_error ("%s: %s", device, err); free (err); return -1; } |