> struct mii_ioctl_data *mii = (void *)&ifreq.ifr_data; <====== LINE 155 > How to get rid of the warning here?! Try this one ...
struct mii_ioctl_data *mii = (struct mii_ioctl_data *)&ifreq.ifr_data; ... just from experience with other source file compilation. Sometimes it works, depends on type definitions. Sorry, can't test it ... currently no working development machine ... and no time. -- Harald _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
