Skip to content

Commit 8348b8c

Browse files
removed deref
1 parent e3ed6aa commit 8348b8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/machine/system_calls.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9243,7 +9243,7 @@ fn rng() -> &'static dyn SecureRandom {
92439243
static ref RANDOM: SystemRandom = SystemRandom::new();
92449244
}
92459245

9246-
RANDOM.deref()
9246+
//RANDOM.deref() // TODO
92479247
}
92489248

92499249
struct MyKey<T: core::fmt::Debug + PartialEq>(T);

0 commit comments

Comments
 (0)