[NTOS:CM] Add surrounding parentheses to GET_HASH_INDEX definition

This commit is contained in:
George Bișoc
2023-10-01 20:05:57 +02:00
parent 0e68e27ff6
commit a4213d491d
+1 -1
View File
@@ -16,7 +16,7 @@
// Returns the index into the hash table, or the entry itself
//
#define GET_HASH_INDEX(ConvKey) \
GET_HASH_KEY(ConvKey) % CmpHashTableSize
(GET_HASH_KEY(ConvKey) % CmpHashTableSize)
#define GET_HASH_ENTRY(Table, ConvKey) \
(&Table[GET_HASH_INDEX(ConvKey)])
#define ASSERT_VALID_HASH(h) \