We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3de6c2c commit aba3454Copy full SHA for aba3454
library/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