mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOS:CM] Add surrounding parentheses to GET_HASH_INDEX definition
This commit is contained in:
parent
0e68e27ff6
commit
a4213d491d
1 changed files with 1 additions and 1 deletions
|
@ -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) \
|
||||
|
|
Loading…
Reference in a new issue