mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-06 09:56:38 +00:00
Remove warning in tcp_enqueue (cast from u32_t to u16_t)
This commit is contained in:
parent
6f93a8f091
commit
2b02db2675
@ -130,8 +130,8 @@ tcp_enqueue(struct tcp_pcb *pcb, void *arg, u16_t len,
|
|||||||
{
|
{
|
||||||
struct pbuf *p;
|
struct pbuf *p;
|
||||||
struct tcp_seg *seg, *useg, *queue;
|
struct tcp_seg *seg, *useg, *queue;
|
||||||
u32_t left, seqno;
|
u32_t seqno;
|
||||||
u16_t seglen;
|
u16_t left, seglen;
|
||||||
void *ptr;
|
void *ptr;
|
||||||
u8_t queuelen;
|
u8_t queuelen;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user