diff options
| author | Martin Winter <mwinter@opensourcerouting.org> | 2015-09-23 21:13:58 -0700 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-05-25 20:38:33 -0400 | 
| commit | 868388e57e62dd8766f6b35bb787d059f014d11e (patch) | |
| tree | 949b5940ec7f76a78ac9bb27a398036583a45149 /pimd/pim_static.c | |
| parent | 7ec306362453007de1bec322a605600cf5f3c793 (diff) | |
pimd: Fix warning
Fix long unsigned / unsigned mixup
Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_static.c')
| -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 f2b8e856b5..cb40814a6e 100644 --- a/pimd/pim_static.c +++ b/pimd/pim_static.c @@ -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;  | 
