summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2018-12-20 13:01:15 +0100
committerOndrej Zajicek (work) <santiago@crfreenet.org>2018-12-20 13:01:15 +0100
commit4df42f1a55b39bd4f7657e3b22c3a09a77f25a45 (patch)
treee342a696a61a9a4083378062c2e3fbb4276d610d /lib
parent17450df314ff472deff535104a6824c322e5aa7f (diff)
Lib: Force output type in ip4_addr constructor
Fixes type issue when u64 is pushed into it.
Diffstat (limited to 'lib')
-rw-r--r--lib/ip.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ip.h b/lib/ip.h
index 4fbe4407..8028ac78 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