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 69eee53 commit 8c500a4Copy full SHA for 8c500a4
src/lib.rs
@@ -1073,9 +1073,9 @@ impl Rng for EntropyRng {
1073
Ok(jitter_rng) => {
1074
switch_rng = Some(EntropySource::Jitter(jitter_rng));
1075
}
1076
- Err(jitter_error) => {
+ Err(_jitter_error) => {
1077
warn!("EntropyRng: JitterRng failed: {}",
1078
- jitter_error);
+ _jitter_error);
1079
return Err(os_rng_error);
1080
1081
@@ -1091,9 +1091,9 @@ impl Rng for EntropyRng {
1091
1092
1093
1094
1095
1096
1097
1098
1099
0 commit comments