Remove global variable used in macros, it can be declared locally.

This commit is contained in:
Dirk Ziegelmeier
2015-11-12 08:07:22 +01:00
parent f518c6578c
commit 3f0b1e2cdc
2 changed files with 3 additions and 4 deletions

View File

@@ -115,9 +115,6 @@ struct tcp_pcb *tcp_tw_pcbs;
struct tcp_pcb ** const tcp_pcb_lists[] = {&tcp_listen_pcbs.pcbs, &tcp_bound_pcbs,
&tcp_active_pcbs, &tcp_tw_pcbs};
/** Only used for temporary storage. */
struct tcp_pcb *tcp_tmp_pcb;
u8_t tcp_active_pcbs_changed;
/** Timer counter to handle calling slow-timer from tcp_tmr() */