Fix some errors in debug assertions

This commit is contained in:
Gregory Nutt 2015-01-30 13:29:56 -06:00
parent 62b706fa68
commit f421723fbd
2 changed files with 2 additions and 2 deletions

View File

@ -337,7 +337,7 @@ psock_dgram_recvfrom(FAR struct socket *psock, FAR void *buf, size_t len,
/* Adjust the number of bytes remaining to be read from the packet */
DEBUGASSERT(tmplen <= remain);
DEBUGASSERT(tmplen <= remaining);
remaining -= tmplen;
}
while (remaining > 0);

View File

@ -111,7 +111,7 @@ int local_fifo_read(int fd, FAR uint8_t *buf, size_t *len)
}
else
{
DEBUGASSERT(nread <= len);
DEBUGASSERT(nread <= remaining);
remaining -= nread;
buf += nread;
}