mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-06 09:56:38 +00:00
PPP, added missing semicolon (dammit)
This commit is contained in:
parent
6bd0bd2ed1
commit
bdfbac2aa6
@ -1012,7 +1012,7 @@ pppos_put(ppp_pcb *pcb, struct pbuf *nb)
|
||||
int c;
|
||||
|
||||
for(b = nb; b != NULL; b = b->next) {
|
||||
c = sio_write(pcb->fd, b->payload, b->len)
|
||||
c = sio_write(pcb->fd, b->payload, b->len);
|
||||
if(c != b->len) {
|
||||
PPPDEBUG(LOG_WARNING,
|
||||
("PPP pppos_put: incomplete sio_write(fd:%"SZT_F", len:%d, c: 0x%"X8_F") c = %d\n", (size_t)pcb->fd, b->len, c, c));
|
||||
|
Loading…
Reference in New Issue
Block a user