Replaced tabs with space.

This commit is contained in:
christiaans 2006-11-17 10:47:07 +00:00
parent a606ea14a9
commit f8579b7e60
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ void debug_printf(char *format, ...);
void page_printf(char *format, ...);
/* Plaform specific diagnostic output */
#define LWIP_PLATFORM_DIAG(x) { debug_printf x; }
#define LWIP_PLATFORM_DIAG(x) { debug_printf x; }
#define LWIP_PLATFORM_ASSERT(x) { debug_printf("\fline %d in %s\n", __LINE__, __FILE__); while(1); }
#endif/* LWIP_DEBUG */

View File

@ -462,7 +462,7 @@ static struct pbuf *cs8900_input(struct netif *netif)
#endif
for (q = p; q != 0; q = q->next)
{
LWIP_DEBUGF(NETIF_DEBUG, ("cs8900_input: pbuf @%p tot_len %"U16_F" len %"U16_F"\n", q, q->tot_len, q->len));
LWIP_DEBUGF(NETIF_DEBUG, ("cs8900_input: pbuf @%p tot_len %"U16_F" len %"U16_F"\n", q, q->tot_len, q->len));
/* read 8 bytes per iteration */
ptr = q->payload;