refactor: replace UInt8 with uint8_t

This commit is contained in:
sithlord48
2025-01-10 19:09:43 -05:00
committed by Nick Bolton
parent 8ea20cf6da
commit ba11eba91e
54 changed files with 262 additions and 262 deletions

View File

@ -127,7 +127,7 @@ void SecureSocket::secureAccept()
TCPSocket::EJobResult SecureSocket::doRead()
{
static UInt8 buffer[4096];
static uint8_t buffer[4096];
memset(buffer, 0, sizeof(buffer));
int bytesRead = 0;
int status = 0;