Skip to content

Commit c71ad7d

Browse files
committed
run make format, single line comment
1 parent 567dc5f commit c71ad7d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/iso_alloc_random.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ INTERNAL_HIDDEN uint64_t rand_uint64(void) {
3737
#elif __FreeBSD__ || __DragonFly__ || __linux__ || __ANDROID__
3838
ret = getrandom(&val, sizeof(val), GRND_NONBLOCK) != sizeof(val);
3939
#elif __NetBSD__
40-
/* Temporary solution until NetBSD 10 released with getrandom support
41-
*/
40+
/* Temporary solution until NetBSD 10 released with getrandom support */
4241
arc4random_buf(&val, sizeof(val));
4342
#endif
4443

0 commit comments

Comments
 (0)