Remove tab chars from retro C sources.

This commit is contained in:
Oliver Schmidt 2013-01-28 23:43:08 +01:00
parent 0a88373add
commit 1a5e20bc5f
12 changed files with 41 additions and 41 deletions

View file

@ -71,10 +71,10 @@ pollhandler(void)
} else if(BUF->type == uip_htons(UIP_ETHTYPE_ARP)) {
uip_arp_arpin();
/* If the above function invocation resulted in data that
should be sent out on the network, the global variable
uip_len is set to a value > 0. */
should be sent out on the network, the global variable
uip_len is set to a value > 0. */
if(uip_len > 0) {
ethernet_send();
ethernet_send();
}
}
}