aboutsummaryrefslogtreecommitdiffstats
path: root/Demos
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2015-12-22 22:36:23 +1100
committerDean Camera <dean@fourwalledcubicle.com>2015-12-22 22:36:23 +1100
commita86b502294ebda621fa8f3cce20a8238ea15eebc (patch)
treeabe7bd6f864869994b2b4ba3862cd997240ebc5d /Demos
parentd0161e0a9bbc8d1a059a32e1c21fdd201cce1f3c (diff)
downloadlufa-a86b502294ebda621fa8f3cce20a8238ea15eebc.tar.gz
lufa-a86b502294ebda621fa8f3cce20a8238ea15eebc.tar.bz2
lufa-a86b502294ebda621fa8f3cce20a8238ea15eebc.zip
Fix additional void pointer arithmetic in the class driver RNDIS demo.
Diffstat (limited to 'Demos')
-rw-r--r--Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c b/Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c
index 57e71cb77..c9db1f0ee 100644
--- a/Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c
+++ b/Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c
@@ -244,7 +244,7 @@ void DecodeUDPHeader(void* InDataStart)
void DecodeDHCPHeader(void* InDataStart)
{
#if !defined(NO_DECODE_DHCP)
- uint8_t* DHCPOptions = (InDataStart + sizeof(DHCP_Header_t));
+ uint8_t* DHCPOptions = ((uint8_t*)InDataStart + sizeof(DHCP_Header_t));
printf_P(PSTR(" \\\r\n DHCP\r\n"));