Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Nov 27, 2024
1 parent 2ee09a2 commit 8f50e8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/default_impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub fn u64() -> Result<u64, Error> {
}

/// Default implementation of `insecure_fill_inner` on top of `getrandom::fill_uninit`
pub fn insecure_fill(dst: &mut [MaybeUninit<u8>]) -> Result<(), Error> {
pub fn insecure_fill_uninit(dst: &mut [MaybeUninit<u8>]) -> Result<(), Error> {
crate::fill_uninit(dst).map(|_| ())
}

Expand Down

0 comments on commit 8f50e8d

Please sign in to comment.