uhttpd: Fix compilation with gcc 6.4

This commit is contained in:
jbnadal
2018-10-25 15:38:30 +02:00
parent f53ccea520
commit 32918ded24
3 changed files with 4 additions and 4 deletions

View File

@@ -419,7 +419,7 @@ void client_poll_post_data(struct client *cl)
if (!d->data_send)
return;
cur_len = min(r->content_length, len);
cur_len = u_min(r->content_length, len);
if (cur_len) {
if (d->data_blocked)
break;