From 4efa7668c8d0c54b59527b9b1744f9651747f919 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Thu, 22 Nov 2018 11:18:13 +0200 Subject: [PATCH] Fix typo --- src/mountstack.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mountstack.rs b/src/mountstack.rs index 3bb56af..386c9a4 100644 --- a/src/mountstack.rs +++ b/src/mountstack.rs @@ -55,7 +55,7 @@ impl<'a> Drop for MountStack<'a> { while let Some(target) = self.targets.pop() { debug!("Unmounting {}", target.display()); if !umount(target).is_ok() { - warn!("Unable to mount {}", target.display()); + warn!("Unable to umount {}", target.display()); }; } }