diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-07-11 16:18:05 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-07-11 19:00:53 -0700 |
commit | d6dc4ba487f79ba79e5fb02f4c3e978fa1edeee5 (patch) | |
tree | 35d234bd4a14e2391300f46ba8c22b1f9b8d42e7 /ospfd/ospf_zebra.c | |
parent | 762cb0d0e116860bc72d7f0be3c048871da9512f (diff) | |
download | quagga-d6dc4ba487f79ba79e5fb02f4c3e978fa1edeee5.tar.bz2 quagga-d6dc4ba487f79ba79e5fb02f4c3e978fa1edeee5.tar.xz |
Fix compiler warnings from incorrect format strings
Mostly from incorrect usage of z option. Need to use:
printf(" size = %zd", x->size);
Diffstat (limited to 'ospfd/ospf_zebra.c')
-rw-r--r-- | ospfd/ospf_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_zebra.c b/ospfd/ospf_zebra.c index 5405a782..c627afb2 100644 --- a/ospfd/ospf_zebra.c +++ b/ospfd/ospf_zebra.c @@ -136,7 +136,7 @@ ospf_interface_delete (int command, struct zclient *zclient, if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) zlog_debug - ("Zebra: interface delete %s index %d flags %ld metric %d mtu %d", + ("Zebra: interface delete %s index %d flags %#llx metric %d mtu %d", ifp->name, ifp->ifindex, (unsigned long long)ifp->flags, ifp->metric, ifp->mtu); |