diff options
| author | Ralf Jung <post@ralfj.de> | 2024-12-08 08:21:20 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-12-08 08:21:20 +0100 |
| commit | 03c412ead4c3f61bc85a772cde5bcc1562975b09 (patch) | |
| tree | ac62915b8079cba18796a1fc417a16dd75da8093 | |
| parent | 8cabbc9bd014e364f061d8015d1563f6fe4dedb4 (diff) | |
| download | rust-03c412ead4c3f61bc85a772cde5bcc1562975b09.tar.gz rust-03c412ead4c3f61bc85a772cde5bcc1562975b09.zip | |
fix build
| -rw-r--r-- | src/tools/miri/src/shims/io_error.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/miri/src/shims/io_error.rs b/src/tools/miri/src/shims/io_error.rs index 7596db8a198..acf3f74a93d 100644 --- a/src/tools/miri/src/shims/io_error.rs +++ b/src/tools/miri/src/shims/io_error.rs @@ -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), |
