Browse Source

Initialize err in tcp_slowtmr to prevent compiler warning.

STABLE-2_1_x
kieranm 24 years ago
parent
commit
4b9e035a9f
  1. 2
      src/core/tcp.c

2
src/core/tcp.c

@ -454,6 +454,8 @@ tcp_slowtmr(void)
u8_t pcb_remove; /* flag if a PCB should be removed */
err_t err;
err = ERR_OK;
++tcp_ticks;
/* Steps through all of the active PCBs. */

Loading…
Cancel
Save