From: Roy Marples Date: Thu, 17 Jul 2008 12:26:32 +0000 (+0000) Subject: No need to cast X-Git-Tag: v4.0.2~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=20d23e16d21c43e90c5de12cf83dff54310b6f5e;p=thirdparty%2Fdhcpcd.git No need to cast --- diff --git a/dhcp.c b/dhcp.c index a0a4a3b1..3d6a29d9 100644 --- a/dhcp.c +++ b/dhcp.c @@ -720,7 +720,7 @@ make_message(struct dhcp_message **message, dhcp = xzalloc(sizeof (*dhcp)); m = (uint8_t *)dhcp; - p = (uint8_t *)&dhcp->options; + p = dhcp->options; if ((type == DHCP_INFORM || type == DHCP_RELEASE ||