Remove/fix unused stuff and other warnings

This commit is contained in:
2025-10-14 20:20:41 +02:00
parent 01b37e41c2
commit 0c3250e8d6
17 changed files with 24 additions and 55 deletions

View File

@ -52,7 +52,7 @@ void randcrypto_gen_uniqid(char *out, size_t n) {
uint32_t extra = (r != -1) ? (uint32_t)r : uniqstate * 0x27d4eb2dU;
uniqstate += 0x9E3779B1u;
uint32_t v = uniqmix32(uniqstate);
uint32_t v = uniqmix32(uniqstate ^ extra);
spinlock_release(&uniqstate_spinlock);