diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2014-04-14 10:53:46 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2014-04-14 10:53:46 +0400 |
commit | 24598ce6b7cfe72ada92aed48691fdf092d94fc7 (patch) | |
tree | c4739de7c5f41035f518ab75c8db9100a4e7ef1b /print-wb.c | |
parent | 1a105f1e184d2a250370ad83b05a5df53ac920e1 (diff) | |
download | tcpdump-24598ce6b7cfe72ada92aed48691fdf092d94fc7.tar.gz |
NDOize the rest of util.c
Diffstat (limited to 'print-wb.c')
-rw-r--r-- | print-wb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -204,7 +204,7 @@ wb_id(netdissect_options *ndo, cp = (char *)(io + nid); if ((u_char *)cp + len <= ndo->ndo_snapend) { ND_PRINT((ndo, "\"")); - (void)fn_print((u_char *)cp, (u_char *)cp + len); + fn_print(ndo, (u_char *)cp, (u_char *)cp + len); ND_PRINT((ndo, "\"")); } |