PPP, added missing semicolon (dammit)

This commit is contained in:
Sylvain Rochet 2012-12-23 22:58:52 +01:00
parent 6bd0bd2ed1
commit bdfbac2aa6

View File

@ -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));