Skip to content

Commit 7611ec6

Browse files
committed
fmt
1 parent 244b636 commit 7611ec6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/vxworks.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ pub fn getrandom_inner(dest: &mut [MaybeUninit<u8>]) -> Result<(), Error> {
1515
RNG_INIT.store(true, Relaxed);
1616
break;
1717
}
18-
Equal => unsafe { libc::usleep(10); },
18+
Equal => unsafe {
19+
libc::usleep(10);
20+
},
1921
Less => return Err(Error::VXWORKS_RAND_SECURE),
2022
}
2123
}

0 commit comments

Comments
 (0)