mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
Fixed compiler warning in webclient.
This commit is contained in:
parent
9f8f70e32a
commit
390f1e2c60
1 changed files with 1 additions and 1 deletions
|
|
@ -1897,7 +1897,7 @@ int webclient_perform(FAR struct webclient_context *ctx)
|
|||
ws->state_len);
|
||||
ws->state_len -= ssz;
|
||||
ws->state_offset += ssz;
|
||||
DEBUGASSERT(ws->state_offset <= ws->data_len);
|
||||
DEBUGASSERT((size_t)ws->state_offset <= ws->data_len);
|
||||
if ((size_t)ws->state_offset == ws->data_len)
|
||||
{
|
||||
ws->data_buffer = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue