diff options
Diffstat (limited to 'src/mount.c')
-rw-r--r-- | src/mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mount.c b/src/mount.c index c95581fd1e..5c16f86d53 100644 --- a/src/mount.c +++ b/src/mount.c @@ -645,7 +645,7 @@ static void mount_enter_unmounting(Mount *m, bool success) { return; fail: - log_warning("%s failed to run umount exectuable: %s", UNIT(m)->meta.id, strerror(-r)); + log_warning("%s failed to run 'umount' task: %s", UNIT(m)->meta.id, strerror(-r)); mount_enter_mounted(m, false); } @@ -688,7 +688,7 @@ static void mount_enter_mounting(Mount *m) { return; fail: - log_warning("%s failed to run mount exectuable: %s", UNIT(m)->meta.id, strerror(-r)); + log_warning("%s failed to run 'mount' task: %s", UNIT(m)->meta.id, strerror(-r)); mount_enter_dead(m, false); } |