mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
Add missing parentheses
This commit is contained in:
parent
c48a6cdef0
commit
257cb1fb08
4
msi.h
4
msi.h
@ -123,10 +123,10 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LOWORD
|
#ifndef LOWORD
|
||||||
#define LOWORD(x) (x & 0xFFFF)
|
#define LOWORD(x) ((x) & 0xFFFF)
|
||||||
#endif /* LOWORD */
|
#endif /* LOWORD */
|
||||||
#ifndef HIWORD
|
#ifndef HIWORD
|
||||||
#define HIWORD(x) ((x >> 16) & 0xFFFF)
|
#define HIWORD(x) (((x) >> 16) & 0xFFFF)
|
||||||
#endif /* HIWORD */
|
#endif /* HIWORD */
|
||||||
|
|
||||||
#if BYTE_ORDER == BIG_ENDIAN
|
#if BYTE_ORDER == BIG_ENDIAN
|
||||||
|
Loading…
x
Reference in New Issue
Block a user