Properly put macro args in ().
Spotted by: FlexeLint.
This commit is contained in:
parent
2c876e15c8
commit
6dbb527e47
@ -41,7 +41,7 @@
|
||||
#define MAXDEP 8
|
||||
|
||||
#define I16(p) ((p)[0] + ((p)[1] << 8))
|
||||
#define I32(p) (I16(p) + (I16(p+2) << 16))
|
||||
#define I32(p) (I16(p) + (I16((p)+2) << 16))
|
||||
|
||||
void
|
||||
pnp_printf(u_int32_t id, char *fmt, ...)
|
||||
|
Loading…
Reference in New Issue
Block a user