aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/sync/chan/chan.odin5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/sync/chan/chan.odin b/core/sync/chan/chan.odin
index f4774e4f8..0c3f4a725 100644
--- a/core/sync/chan/chan.odin
+++ b/core/sync/chan/chan.odin
@@ -476,10 +476,7 @@ select_raw :: proc "odin" (recvs: []^Raw_Chan, sends: []^Raw_Chan, send_msgs: []
return
}
- r: ^rand.Rand = nil
-
-
- select_idx = rand.int_max(count, r) if count > 0 else 0
+ select_idx = rand.int_max(count) if count > 0 else 0
sel := candidates[select_idx]
if sel.is_recv {