diff options
author | Gisle Vanem <gvanem@yahoo.no> | 2014-04-15 17:14:51 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2014-04-15 17:14:51 +0400 |
commit | 0516a28d2668e23776213960ad19631c4e5a2486 (patch) | |
tree | ffaf7a573369fc7298dbf5fe1ec005fcc7ebe9cc /print-802_15_4.c | |
parent | 330c159e07243ef223e73db909fc0a3f295d9322 (diff) | |
download | tcpdump-0516a28d2668e23776213960ad19631c4e5a2486.tar.gz |
fix runaway ND_PRINT() parentheses
Diffstat (limited to 'print-802_15_4.c')
-rw-r--r-- | print-802_15_4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print-802_15_4.c b/print-802_15_4.c index d60503da..71409ff6 100644 --- a/print-802_15_4.c +++ b/print-802_15_4.c @@ -143,7 +143,7 @@ ieee802_15_4_if_print(netdissect_options *ndo, p += 8; break; } - ND_PRINT((ndo,"< "); + ND_PRINT((ndo,"< ")); switch ((fc >> 14) & 0x3) { case 0x00: @@ -165,7 +165,7 @@ ieee802_15_4_if_print(netdissect_options *ndo, panid = EXTRACT_LE_16BITS(p); p += 2; } - ND_PRINT((ndo,"%04x:%s ", panid, le64addr_string(p)))); + ND_PRINT((ndo,"%04x:%s ", panid, le64addr_string(p))); p += 8; break; } |