diff options
| author | Roy Marples <roy@marples.name> | 2019-04-29 17:36:21 +0100 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2019-04-29 17:36:21 +0100 |
| commit | a9a0bf9e89ced9cd04720cdd6fcb6d6068159ff0 (patch) | |
| tree | f00da2a9a4df2bd9172e6af8e64271e85eb4696c | |
| parent | 640ac214194d32a0696d1a64569ea82365a7af0c (diff) | |
| download | dhcpcd-a9a0bf9e89ced9cd04720cdd6fcb6d6068159ff0.tar.xz | |
dhcp: Cast away a warning on mips64
| -rw-r--r-- | src/dhcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3506,7 +3506,7 @@ dhcp_readudp(struct dhcpcd_ctx *ctx, struct interface *ifp) } } - dhcp_handlebootp(ifp, (struct bootp *)buf, (size_t)bytes, + dhcp_handlebootp(ifp, (struct bootp *)(void *)buf, (size_t)bytes, &from.sin_addr); #endif } |
