We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ef59fd commit 23f6261Copy full SHA for 23f6261
std/src/sys/windows/rand.rs
@@ -83,5 +83,5 @@ fn fallback_rng() -> Result<(u64, u64), io::Error> {
83
/// We can't use RtlGenRandom with UWP, so there is no fallback
84
#[cfg(target_vendor = "uwp")]
85
fn fallback_rng() -> Result<(u64, u64), io::Error> {
86
- Err(io::const_io_error!(io::ErrorKind::Unsupported, "unsupported on UWP"))
+ Err(io::const_io_error!(io::ErrorKind::Unsupported, "RtlGenRandom() not supported on UWP"))
87
}
0 commit comments