From: Scott Feldman Date: Thu, 4 Dec 2014 08:57:14 +0000 (+0100) Subject: bridge/fdb: fix statistics output spacing X-Git-Tag: v3.18.0~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85c1807f16774286c7fa67090b2fad4d1dae4f18;p=thirdparty%2Fiproute2.git bridge/fdb: fix statistics output spacing Signed-off-by: Scott Feldman Signed-off-by: Jiri Pirko --- diff --git a/bridge/fdb.c b/bridge/fdb.c index a55fac1e6..d678342cd 100644 --- a/bridge/fdb.c +++ b/bridge/fdb.c @@ -142,7 +142,7 @@ int print_fdb(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) struct nda_cacheinfo *ci = RTA_DATA(tb[NDA_CACHEINFO]); int hz = get_user_hz(); - fprintf(fp, " used %d/%d", ci->ndm_used/hz, + fprintf(fp, "used %d/%d ", ci->ndm_used/hz, ci->ndm_updated/hz); } if (r->ndm_flags & NTF_SELF)