[zebra] MTU is unsigned

The MTU data in the netlink message is always unsigned 32 bits.
Don't use integer.
diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c
index 0525449..03df28c 100644
--- a/zebra/rt_netlink.c
+++ b/zebra/rt_netlink.c
@@ -469,7 +469,7 @@
   ifp = if_get_by_name (name);
   set_ifindex(ifp, ifi->ifi_index);
   ifp->flags = ifi->ifi_flags & 0x0000fffff;
-  ifp->mtu6 = ifp->mtu = *(int *) RTA_DATA (tb[IFLA_MTU]);
+  ifp->mtu6 = ifp->mtu = *(uint32_t *) RTA_DATA (tb[IFLA_MTU]);
   ifp->metric = 1;
 
   /* Hardware type and address. */