Travis: Restore the uint8_t arrays

This commit is contained in:
Daniel Marjamäki 2019-03-13 18:59:55 +01:00
parent b984897526
commit cdeb91bfcc
1 changed files with 2 additions and 2 deletions

View File

@ -201,8 +201,8 @@ void bufferAccessOutOfBounds()
buf[i] = L'\0';
}
char byteBuf[5] = {0};
char byteBuf2[10] = {0};
uint8_t byteBuf[5] = {0};
uint8_t byteBuf2[10] = {0};
// TODO ticket #8412 cppcheck-suppress ignoredReturnValue
// cppcheck-suppress bufferAccessOutOfBounds
RtlEqualMemory(byteBuf, byteBuf2, 20);