summaryrefslogtreecommitdiffstats
path: root/src/io/io_worker.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/io/io_worker.rs')
-rw-r--r--src/io/io_worker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io/io_worker.rs b/src/io/io_worker.rs
index 3be08e6..b8d5113 100644
--- a/src/io/io_worker.rs
+++ b/src/io/io_worker.rs
@@ -330,7 +330,7 @@ pub fn recursive_cut(
}
#[cfg(feature = "recycle_bin")]
-fn trash_error_to_io_error(err: ::Error) -> std::io::Error {
+fn trash_error_to_io_error(err: trash::Error) -> std::io::Error {
match err {
trash::Error::Unknown { description } => {
std::io::Error::new(std::io::ErrorKind::Other, description)