Browse Source

Remove warning in tcp_enqueue (cast from u32_t to u16_t)

STABLE-2_1_x
goldsimon 19 years ago
parent
commit
2b02db2675
  1. 4
      src/core/tcp_out.c

4
src/core/tcp_out.c

@ -130,8 +130,8 @@ tcp_enqueue(struct tcp_pcb *pcb, void *arg, u16_t len,
{
struct pbuf *p;
struct tcp_seg *seg, *useg, *queue;
u32_t left, seqno;
u16_t seglen;
u32_t seqno;
u16_t left, seglen;
void *ptr;
u8_t queuelen;

Loading…
Cancel
Save