Properly put macro args in ().

Spotted by:	FlexeLint.
This commit is contained in:
Poul-Henning Kamp 2002-10-16 09:07:30 +00:00
parent 2c876e15c8
commit 6dbb527e47

View File

@ -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, ...)