X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/1de50510142bf05eb2b3724b014e72de4b599830..c39d40a767a1ae36171e5bcbf6f157ff3e80fb6c:/print-enc.c diff --git a/print-enc.c b/print-enc.c index 5a781af4..9f541c3c 100644 --- a/print-enc.c +++ b/print-enc.c @@ -81,9 +81,9 @@ struct enchdr { nd_uint32_t flags; }; -#define ENC_PRINT_TYPE(wh, xf, nam) \ +#define ENC_PRINT_TYPE(wh, xf, name) \ if ((wh) & (xf)) { \ - ND_PRINT("%s%s", nam, (wh) == (xf) ? "): " : ","); \ + ND_PRINT("%s%s", name, (wh) == (xf) ? "): " : ","); \ (wh) &= ~(xf); \ }