Add semicolon to fix a compile error in librb/src/arc4random.c

This commit is contained in:
hello-smile6 2022-09-30 10:27:26 -07:00 committed by GitHub
parent 00ba30c175
commit 5206a066f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,7 +105,7 @@ arc4_stir(struct arc4_stream *as)
struct rusage buf;
getrusage(RUSAGE_SELF, &buf);
arc4_addrandom(as, (void *)&buf, sizeof(buf));
memset(&buf, 0, sizeof(buf))}
memset(&buf, 0, sizeof(buf));}
fd = open("/dev/urandom", O_RDONLY);
if(fd != -1)