summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pimd/pim_static.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_static.c b/pimd/pim_static.c
index cb40814a6e..26743b5961 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(%u) failure", sizeof(*s_route));
+ zlog_err("PIM XCALLOC(%zu) failure", sizeof(*s_route));
return 0;
}
return s_route;