From da5dbc6b1f923fd649bdca29754dcee66aa3ade1 Mon Sep 17 00:00:00 2001 From: Zhibin Li <08826794brmt@gmail.com> Date: Thu, 5 Jul 2018 22:43:25 +0800 Subject: [PATCH] net: fix a typo in print_tpacket_stats --- net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net.c b/net.c index 89ea5edf..bbb8a94b 100644 --- a/net.c +++ b/net.c @@ -643,7 +643,7 @@ print_tpacket_stats(struct tcb *const tcp, const kernel_ulong_t addr, printaddr(addr); } else { PRINT_FIELD_U("{", stats, tp_packets); - PRINT_FIELD_U("{", stats, tp_drops); + PRINT_FIELD_U(", ", stats, tp_drops); tprints("}"); } } -- 2.40.0