Replaced tabs with space.

This commit is contained in:
christiaans
2006-11-17 10:51:13 +00:00
parent fe1bea9538
commit d4b6471d39
10 changed files with 74 additions and 74 deletions

View File

@@ -614,8 +614,8 @@ udp_remove(struct udp_pcb *pcb)
for (pcb2 = udp_pcbs; pcb2 != NULL; pcb2 = pcb2->next) {
/* find pcb in udp_pcbs list */
if (pcb2->next != NULL && pcb2->next == pcb) {
/* remove pcb from list */
pcb2->next = pcb->next;
/* remove pcb from list */
pcb2->next = pcb->next;
}
}
memp_free(MEMP_UDP_PCB, pcb);