Implement path_link for Windows. (#1199)

Implement path_link for Windows.
This commit is contained in:
Marcin Mielniczuk
2020-04-03 21:24:38 +02:00
committed by GitHub
parent 7728703ec7
commit f6e3ab03a2
4 changed files with 51 additions and 9 deletions

View File

@@ -69,7 +69,7 @@ impl From<io::Error> for Errno {
winerror::ERROR_DIRECTORY => Self::Notdir,
winerror::ERROR_ALREADY_EXISTS => Self::Exist,
x => {
log::debug!("unknown error value: {}", x);
log::debug!("winerror: unknown error value: {}", x);
Self::Io
}
},