refactoring: reducing warnings

This commit is contained in:
rusefillc 2022-07-20 17:03:15 -04:00
parent 8403fe2de9
commit adc11fcc1f
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ static int tsProcessOne(TsChannelBase* tsChannel) {
tsState.totalCounter++;
uint8_t firstByte;
int received = tsChannel->readTimeout(&firstByte, 1, TS_COMMUNICATION_TIMEOUT);
size_t received = tsChannel->readTimeout(&firstByte, 1, TS_COMMUNICATION_TIMEOUT);
#if EFI_SIMULATOR
logMsg("received %d\r\n", received);
#endif