diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 03:29:14 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 03:29:14 +0200 |
commit | ed2eb093c75183167524205111fb4ae3e253e4a9 (patch) | |
tree | 5e6cc1fb8b9b49374c2e430c4d3e9507ac2e9d83 /ospf6d/ospf6_lsa.c | |
parent | ripd: ripd-warnings.patch (diff) | |
download | frr-ed2eb093c75183167524205111fb4ae3e253e4a9.tar.xz frr-ed2eb093c75183167524205111fb4ae3e253e4a9.zip |
ospfd: ospfd-warnings.patch
Remove compile warnings for the ospfd/ospf6d directory
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Reviewed-by:
Diffstat (limited to 'ospf6d/ospf6_lsa.c')
-rw-r--r-- | ospf6d/ospf6_lsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_lsa.c b/ospf6d/ospf6_lsa.c index 2e6153557..4a4fa0f9f 100644 --- a/ospf6d/ospf6_lsa.c +++ b/ospf6d/ospf6_lsa.c @@ -493,8 +493,8 @@ ospf6_lsa_show_internal (struct vty *vty, struct ospf6_lsa *lsa) vty_out (vty, "Flag: %x %s", lsa->flag, VNL); vty_out (vty, "Lock: %d %s", lsa->lock, VNL); vty_out (vty, "ReTx Count: %d%s", lsa->retrans_count, VNL); - vty_out (vty, "Threads: Expire: %x, Refresh: %x %s", - lsa->expire, lsa->refresh, VNL); + vty_out (vty, "Threads: Expire: %llx, Refresh: %llx %s", + (unsigned long long)lsa->expire, (unsigned long long)lsa->refresh, VNL); vty_out (vty, "%s", VNL); return; } |