diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2014-03-26 13:08:22 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2014-03-26 15:49:27 +0400 |
commit | d6af516cbc7c874404cb07456a6e80a8e9ddd9b4 (patch) | |
tree | 52828124908adb5e860f0da0e4dbcb8c51e595e5 /print-lane.c | |
parent | ea256d91381ac0ebb3d159511b3e78d4dff0b917 (diff) | |
download | tcpdump-d6af516cbc7c874404cb07456a6e80a8e9ddd9b4.tar.gz |
finalize some previous NDO conversions
Eliminate a number of fputs(), putchar() and fflush() uses. Justify
preprocessor directives. Don't typecast ND_PRINT() to void and fix some
indentation.
Diffstat (limited to 'print-lane.c')
-rw-r--r-- | print-lane.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-lane.c b/print-lane.c index 97653efd..c8d919e1 100644 --- a/print-lane.c +++ b/print-lane.c @@ -68,7 +68,7 @@ static const struct tok lecop2str[] = { static void lane_hdr_print(netdissect_options *ndo, const u_char *bp) { - (void)ND_PRINT((ndo, "lecid:%x ", EXTRACT_16BITS(bp))); + ND_PRINT((ndo, "lecid:%x ", EXTRACT_16BITS(bp))); } /* |