This commit is contained in:
anonymou0719 2026-01-19 11:47:16 +00:00 committed by GitHub
commit 4ebd43cb07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -45,5 +45,5 @@ WEAK NORETURN util_assertion_failed(const char *filename, int line) {
}
WEAK uint32_t rand32(void) {
return ((uint32_t)rand() << 1) + (uint32_t)rand;
return ((uint32_t)rand() << 1) + (uint32_t)rand();
}