We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4a7461 commit 64d33b1Copy full SHA for 64d33b1
src/libstd/os.rs
@@ -845,13 +845,13 @@ pub enum MapError {
845
ErrAlreadyExists,
846
/// Unrecognized error from `VirtualAlloc`. The inner value is the return
847
/// value of GetLastError.
848
- ErrVirtualAlloc(uint),
+ ErrVirtualAlloc(i32),
849
/// Unrecognized error from `CreateFileMapping`. The inner value is the
850
/// return value of `GetLastError`.
851
- ErrCreateFileMappingW(uint),
+ ErrCreateFileMappingW(i32),
852
/// Unrecognized error from `MapViewOfFile`. The inner value is the return
853
/// value of `GetLastError`.
854
- ErrMapViewOfFile(uint)
+ ErrMapViewOfFile(i32)
855
}
856
857
#[stable(feature = "rust1", since = "1.0.0")]
0 commit comments