From: Ondrej Zajicek (work) Date: Thu, 20 Dec 2018 12:01:15 +0000 (+0100) Subject: Lib: Force output type in ip4_addr constructor X-Git-Tag: v1.6.5~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4df42f1a55b39bd4f7657e3b22c3a09a77f25a45;p=thirdparty%2Fbird.git Lib: Force output type in ip4_addr constructor Fixes type issue when u64 is pushed into it. --- diff --git a/lib/ip.h b/lib/ip.h index 4fbe44070..8028ac782 100644 --- a/lib/ip.h +++ b/lib/ip.h @@ -67,7 +67,7 @@ typedef struct ip4_addr { typedef u32 ip4_addr; -#define _MI4(x) (x) +#define _MI4(x) ((u32) (x)) #define _I(x) (x) #endif