mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-03 11:01:48 +00:00
pimd: Fix warning
Fix long unsigned / unsigned mixup Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
This commit is contained in:
parent
7ec3063624
commit
868388e57e
@ -40,7 +40,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;
|
||||
|
Loading…
Reference in New Issue
Block a user