From 03bdcc4c42b5ae4b7540b2d199182a18ea204fa5 Mon Sep 17 00:00:00 2001 From: orbitcowboy Date: Tue, 13 Apr 2021 16:57:31 +0200 Subject: [PATCH] Attempt to make CI happy --- test/cfg/std.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cfg/std.c b/test/cfg/std.c index 6624022f2..a5e60d3f1 100644 --- a/test/cfg/std.c +++ b/test/cfg/std.c @@ -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); }