diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2020-12-10 20:34:09 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2020-12-10 20:34:09 +0100 |
commit | 1b69d2a8a141e97ce2d081fa92941b0cbb26c116 (patch) | |
tree | 5c384823c6d20e5a436075ab501e624ddd5b1cd6 /print-timed.c | |
parent | c754d30dbd366699ae11ea53655bbef398b83c5c (diff) | |
download | tcpdump-1b69d2a8a141e97ce2d081fa92941b0cbb26c116.tar.gz |
Replace the (void)nd_printzp() calls by nd_printjnp() calls
Diffstat (limited to 'print-timed.c')
-rw-r--r-- | print-timed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-timed.c b/print-timed.c index 0e4c48e7..ebd0ac8a 100644 --- a/print-timed.c +++ b/print-timed.c @@ -149,5 +149,5 @@ timed_print(netdissect_options *ndo, break; } ND_PRINT(" name "); - (void)nd_printzp(ndo, tsp->tsp_name, sizeof(tsp->tsp_name), NULL); + nd_printjnp(ndo, tsp->tsp_name, sizeof(tsp->tsp_name)); } |