commit | fc1c114aab24fe47bc6a1976c1c602d507fa4e69 | [log] [tgz] |
---|---|---|
author | Martin Winter <mwinter@opensourcerouting.org> | Wed Sep 23 21:13:58 2015 -0700 |
committer | Martin Winter <mwinter@opensourcerouting.org> | Fri Oct 16 23:50:47 2015 -0700 |
tree | 4189f846e97d34ccb9ebefa6eefc99fdb3f5c00a | |
parent | 7904509bdf9ec7fad3ac1aee763ae39e7c308c52 [diff] |
pimd: Fix warning Fix long unsigned / unsigned mixup Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
diff --git a/pimd/pim_static.c b/pimd/pim_static.c index 3ab5011..e43c59a 100644 --- a/pimd/pim_static.c +++ b/pimd/pim_static.c
@@ -42,7 +42,7 @@ s_route = XCALLOC(MTYPE_PIM_STATIC_ROUTE, sizeof(*s_route)); if (!s_route) { - zlog_err("PIM XCALLOC(%lu) failure", sizeof(*s_route)); + zlog_err("PIM XCALLOC(%u) failure", sizeof(*s_route)); return 0; } return s_route;