Attempt to make CI happy

This commit is contained in:
orbitcowboy 2021-04-13 16:57:31 +02:00
parent e869452240
commit 03bdcc4c42
1 changed files with 2 additions and 2 deletions

View File

@ -3555,9 +3555,9 @@ void bufferAccessOutOfBounds_strxfrm(void)
const char src[3] = "abc";
char dest[1] = "a";
(void)strxfrm(dest,src,1);
// TODO cppcheck-suppress bufferAccessOutOfBounds
// cppcheck-suppress bufferAccessOutOfBounds
(void)strxfrm(dest,src,2);
// TODO cppcheck-suppress bufferAccessOutOfBounds
// cppcheck-suppress bufferAccessOutOfBounds
(void)strxfrm(dest,src,3);
}