lwip-2.1.0: ethernetif.c: 修复编译过程中的警告/Fix compile-time warnings
在第334行中,“(rt_uint32_t*)&msg”应改为“(rt_ubase_t *)&msg”。 在第366行中,“(rt_uint32_t*)&msg”应改为“(rt_ubase_t *)&msg”。 In line 334, "(rt_uint32_t*)&msg" should be changed to "(rt_ubase_t *)&msg". In line 366, "(rt_uint32_t*)&msg" should be changed to "(rt_ubase_t *)&msg". Signed-off-by: Zhou Yanjie <zhou_yan_jie@163.com>
This commit is contained in:
parent
949468f34c
commit
4c585c2d31
|
@ -331,7 +331,7 @@ static void eth_tx_thread_entry(void* parameter)
|
|||
|
||||
while (1)
|
||||
{
|
||||
if (rt_mb_recv(ð_tx_thread_mb, (rt_uint32_t*)&msg, RT_WAITING_FOREVER) == RT_EOK)
|
||||
if (rt_mb_recv(ð_tx_thread_mb, (rt_ubase_t *)&msg, RT_WAITING_FOREVER) == RT_EOK)
|
||||
{
|
||||
struct eth_device* enetif;
|
||||
|
||||
|
@ -363,7 +363,7 @@ static void eth_rx_thread_entry(void* parameter)
|
|||
|
||||
while (1)
|
||||
{
|
||||
if (rt_mb_recv(ð_rx_thread_mb, (rt_uint32_t*)&device, RT_WAITING_FOREVER) == RT_EOK)
|
||||
if (rt_mb_recv(ð_rx_thread_mb, (rt_ubase_t *)&device, RT_WAITING_FOREVER) == RT_EOK)
|
||||
{
|
||||
struct pbuf *p;
|
||||
|
||||
|
|
Loading…
Reference in New Issue