Fixes implicit narrowing conversion reported in #9166.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
Simone Bordet 2023-01-23 19:51:53 +01:00
parent 26a4ee5454
commit 8076aa10e7
No known key found for this signature in database
GPG Key ID: 1677D141BCF3584D
1 changed files with 1 additions and 1 deletions

View File

@ -828,7 +828,7 @@ public class HttpConnection extends AbstractConnection implements Runnable, Writ
BufferUtil.clear(_content);
}
byte gatherWrite = 0;
int gatherWrite = 0;
long bytes = 0;
if (BufferUtil.hasContent(_header))
{