]> git.proxmox.com Git - mirror_iproute2.git/commitdiff
ipneigh: fix missing format specifier
authorStephen Hemminger <stephen@networkplumber.org>
Fri, 20 Apr 2018 16:29:13 +0000 (09:29 -0700)
committerStephen Hemminger <stephen@networkplumber.org>
Fri, 20 Apr 2018 17:33:22 +0000 (10:33 -0700)
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
ip/ipneigh.c

index 4748381701e451eec9233050a36a1e6430ebabaa..bd6e5c5e18cab61deaa8f8f331da251db1cc10a4 100644 (file)
@@ -204,7 +204,7 @@ static void print_cacheinfo(const struct nda_cacheinfo *ci)
 
        print_uint(PRINT_ANY, "used", " used %u", ci->ndm_used / hz);
        print_uint(PRINT_ANY, "confirmed", "/%u", ci->ndm_confirmed / hz);
-       print_uint(PRINT_ANY, "updated", "/u", ci->ndm_updated / hz);
+       print_uint(PRINT_ANY, "updated", "/%u", ci->ndm_updated / hz);
 }
 
 static void print_neigh_state(unsigned int nud)