runsv: small optimization
[oweals/busybox.git] / networking / zcip.c
index 3a349a5afd4b1151d5269a50f88261076d88e3cd..df4c0ec2def3cebf04070eba736b06f50be3f97e 100644 (file)
@@ -279,7 +279,8 @@ int zcip_main(int argc, char **argv)
        // NOTE: the sequence of addresses we try changes only
        // depending on when we detect conflicts.
        {
-               uint32_t t = get_unaligned_u32p((uint32_t *) ((char *)&eth_addr + 2));
+               uint32_t t;
+               move_from_unaligned32(t, ((char *)&eth_addr + 2));
                srand(t);
        }
        if (ip.s_addr == 0)