From: Zhibin Li <08826794brmt@gmail.com> Date: Thu, 5 Jul 2018 14:43:25 +0000 (+0800) Subject: net: fix a typo in print_tpacket_stats X-Git-Tag: v4.24~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da5dbc6b1f923fd649bdca29754dcee66aa3ade1;p=strace net: fix a typo in print_tpacket_stats --- 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("}"); } }