Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stdlib/Random/src/RNGs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ function random_seed()
# almost surely always getting distinct seeds, while having them printed reasonably tersely
return rand(RandomDevice(), UInt128)
catch ex
ex isa IOError || rethrow()
ex isa Base.IOError || rethrow()
@warn "Entropy pool not available to seed RNG; using ad-hoc entropy sources."
return Libc.rand()
end
Expand Down