Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Dec 8, 2024
1 parent b15162c commit 572c25e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shims/io_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ const WINDOWS_IO_ERROR_TABLE: &[(&str, std::io::ErrorKind)] = {
("ERROR_POSSIBLE_DEADLOCK", Deadlock),
("ERROR_DIR_NOT_EMPTY", DirectoryNotEmpty),
("ERROR_CANT_RESOLVE_FILENAME", FilesystemLoop),
("ERROR_DISK_QUOTA_EXCEEDED", FilesystemQuotaExceeded),
("WSAEDQUOT", FilesystemQuotaExceeded),
("ERROR_DISK_QUOTA_EXCEEDED", QuotaExceeded),
("WSAEDQUOT", QuotaExceeded),
("ERROR_FILE_TOO_LARGE", FileTooLarge),
("ERROR_HOST_UNREACHABLE", HostUnreachable),
("WSAEHOSTUNREACH", HostUnreachable),
Expand Down

0 comments on commit 572c25e

Please sign in to comment.