forked from hkc/sfxd
1
0
Fork 0

Take `base` argument into parenthesis too in the macro

This commit is contained in:
Vftdan 2024-02-24 23:56:56 +01:00
parent 1e8bad5dd2
commit 4fc7f1d043
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
#define MAX_SOURCE_DEPTH 32 #define MAX_SOURCE_DEPTH 32
// Set initial offset to size to distinguish start and end // Set initial offset to size to distinguish start and end
#define FOR_OFFSET_PROBE(base, offset, index, size) for (int offset = (size) | 1, index = (base + offset) % (size); offset > 0; offset = (offset << 1L) % ((size) | 1), offset = offset == (size) ? (size) - 1 /* n * 2 = n - 1 (mod n + 1) */ : offset, index = (base + offset) % (size)) #define FOR_OFFSET_PROBE(base, offset, index, size) for (int offset = (size) | 1, index = ((base) + offset) % (size); offset > 0; offset = (offset << 1L) % ((size) | 1), offset = offset == (size) ? (size) - 1 /* n * 2 = n - 1 (mod n + 1) */ : offset, index = ((base) + offset) % (size))
struct msg_target { struct msg_target {
FILE *file_handle; FILE *file_handle;