diff options
author | Martin Winter <mwinter@opensourcerouting.org> | 2015-09-23 21:13:58 -0700 |
---|---|---|
committer | Martin Winter <mwinter@opensourcerouting.org> | 2015-10-16 23:50:47 -0700 |
commit | fc1c114aab24fe47bc6a1976c1c602d507fa4e69 (patch) | |
tree | 4189f846e97d34ccb9ebefa6eefc99fdb3f5c00a | |
parent | 7904509bdf9ec7fad3ac1aee763ae39e7c308c52 (diff) | |
download | quagga-fc1c114aa.tar.bz2 quagga-fc1c114aa.tar.xz |
pimd: Fix warning
Fix long unsigned / unsigned mixup
Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
-rw-r--r-- | pimd/pim_static.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_static.c b/pimd/pim_static.c index 3ab5011b..e43c59a5 100644 --- a/pimd/pim_static.c +++ b/pimd/pim_static.c @@ -42,7 +42,7 @@ static struct static_route * static_route_alloc() 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; |