]> granicus.if.org Git - strace/commitdiff
net: fix a typo in print_tpacket_stats
authorZhibin Li <08826794brmt@gmail.com>
Thu, 5 Jul 2018 14:43:25 +0000 (22:43 +0800)
committerDmitry V. Levin <ldv@altlinux.org>
Sat, 7 Jul 2018 10:29:02 +0000 (10:29 +0000)
net.c

diff --git a/net.c b/net.c
index 89ea5edfc2c4f7e1e0b0d140380269c14f4d0f95..bbb8a94b6f1594792157c00a7208497d50bf6772 100644 (file)
--- 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("}");
        }
 }