This commit is contained in:
Roey Darwish Dror 2018-11-22 11:18:13 +02:00
parent f7b2d2cf23
commit 4efa7668c8

View File

@ -55,7 +55,7 @@ impl<'a> Drop for MountStack<'a> {
while let Some(target) = self.targets.pop() { while let Some(target) = self.targets.pop() {
debug!("Unmounting {}", target.display()); debug!("Unmounting {}", target.display());
if !umount(target).is_ok() { if !umount(target).is_ok() {
warn!("Unable to mount {}", target.display()); warn!("Unable to umount {}", target.display());
}; };
} }
} }