1
0
mirror of https://gittea.dev/nova/th.git synced 2025-10-22 02:40:15 -04:00

changes too small for proper commit message

This commit is contained in:
nova
2025-10-09 01:01:52 +02:00
parent ac6d0e8408
commit 3fa16fd8b2
4 changed files with 13 additions and 10 deletions

View File

@@ -119,15 +119,15 @@ int sort_random(const void *file0, const void *file1){
return 1;
}
time_t num = (time_t)&seed;
unsigned long i;
for (i = 0; i < 6; i++){
time_t i;
for (i = num%2; i < 6+(((time_t)&seed)%2); i++){
num ^= *seed;
if (num%2) {
num ^= (time_t)&num;
num ^= num << i;
num ^= num << (i + (((time_t)&seed)%5));
} else {
num ^= (time_t)&seed;
num ^= num >> i;
num ^= num >> (i + (((time_t)&num)%5));
}
}
num ^= getpid();