Fix compile error in httpd.c

This commit is contained in:
kieranm 2011-02-03 12:44:15 +00:00
parent 61cd545508
commit c67a905dd9
1 changed files with 2 additions and 1 deletions

View File

@ -467,7 +467,8 @@ http_write(struct tcp_pcb *pcb, const void* ptr, u16_t *length, u8_t apiflags)
} else {
len /= 2;
}
LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Send failed, trying less\n", len));
LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE,
("Send failed, trying less (%d bytes)\n", len));
}
} while ((err == ERR_MEM) && (len > 1));