mbed IP library over Ethernet

Dependencies:   lwip-eth Socket lwip lwip-sys

Dependents:   denki-yohou_b Network-RTOS NTPClient_HelloWorld temp_FIAP ... more

Issue: Build Error

When doing a Compile All with the latest library (rev 45) the following warning is thrown.

Warning: A value of type "unsigned char *" cannot be assigned to an entity of type "uint32_t *" in "EthernetInterface/lwip-sys/arch/sys_arch.c", Line: 430, Col: 26

.

Line 430

t->def.stack_pointer = (unsigned char*)malloc(stacksize);

I am using an LPC1768

I suspect a correction to the cast is all that is required.

Line 430

t->def.stack_pointer = (uint32_t*)malloc(stacksize);

Please NOTE: I haven't tested this, but it would seem to be rational.