diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-10-10 19:35:43 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-10-10 19:51:01 -0400 |
| commit | 4fede82a13392be8f02bf7c4aacb5ad69e92392c (patch) | |
| tree | f5c983437d6f2f36b83b8ccc1cb66f7dc07880f8 | |
| parent | d93f7ffcb195c600109fe7d4febaef72a2d83715 (diff) | |
ospfd: Fix arm compile issue
size_t printf formatter is %zd!
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
| -rw-r--r-- | ospfd/ospf_spf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_spf.c b/ospfd/ospf_spf.c index 5f8ef6f993..5dfd41dd1e 100644 --- a/ospfd/ospf_spf.c +++ b/ospfd/ospf_spf.c @@ -1283,7 +1283,7 @@ ospf_spf_calculate (struct ospf_area *area, struct route_table *new_table, area->ts_spf = area->ospf->ts_spf; if (IS_DEBUG_OSPF_EVENT) - zlog_debug ("ospf_spf_calculate: Stop. %ld vertices", + zlog_debug ("ospf_spf_calculate: Stop. %zd vertices", mtype_stats_alloc(MTYPE_OSPF_VERTEX)); /* Free SPF vertices, but not the list. List has ospf_vertex_free |
