Add missing parentheses

This commit is contained in:
olszomal 2022-12-01 11:45:15 +01:00 committed by Michał Trojnara
parent c48a6cdef0
commit 257cb1fb08

4
msi.h
View File

@ -123,10 +123,10 @@
#endif
#ifndef LOWORD
#define LOWORD(x) (x & 0xFFFF)
#define LOWORD(x) ((x) & 0xFFFF)
#endif /* LOWORD */
#ifndef HIWORD
#define HIWORD(x) ((x >> 16) & 0xFFFF)
#define HIWORD(x) (((x) >> 16) & 0xFFFF)
#endif /* HIWORD */
#if BYTE_ORDER == BIG_ENDIAN