From df50598f1c285a5e2820b7427998c6ebf86bbbec Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Thu, 25 Oct 2018 12:39:13 +0200 Subject: [PATCH] Lib: Force output type in ip4_addr constructor Fixes type issue when u64 is pushed into it. --- lib/ip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ip.h b/lib/ip.h index c3f3e905..cc6be384 100644 --- a/lib/ip.h +++ b/lib/ip.h @@ -61,7 +61,7 @@ typedef struct ip4_addr { typedef u32 ip4_addr; -#define _MI4(x) (x) +#define _MI4(x) ((u32) (x)) #define _I(x) (x) #endif