From bc735fc069c662f27b8d21e34d9ac51daec71377 Mon Sep 17 00:00:00 2001 From: Alan Carvalho de Assis Date: Tue, 17 Oct 2023 15:08:17 -0300 Subject: [PATCH] Fix CI compilation error Signed-off-by: Alan C. Assis --- net/route/net_del_ramroute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/route/net_del_ramroute.c b/net/route/net_del_ramroute.c index 5914dd46d2469..e6645cb25966f 100644 --- a/net/route/net_del_ramroute.c +++ b/net/route/net_del_ramroute.c @@ -90,7 +90,7 @@ static int net_match_ipv4(FAR struct net_route_ipv4_s *route, FAR void *arg) net_ipv4_dumproute("Comparing", route); ninfo("With:\n"); - ninfo(" target=%08" PRIx32 " netmask=%08" PRIx32 "\n", + ninfo(" target=%08lx" PRIx32 " netmask=%08lx" PRIx32 "\n", HTONL(match->target), HTONL(match->netmask)); if (net_ipv4addr_maskcmp(route->target, match->target, match->netmask) &&