Fixed regression in test/cfg/std.c introduced by b0d09926fb.

This commit is contained in:
orbitcowboy 2016-11-26 21:14:31 +01:00
parent b0d09926fb
commit 8a0f856e95
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ void nullpointer(int value)
// cppcheck-suppress nullPointer
ferror(0);
// cppcheck-suppress nullPointer
ftell(0);
(void)ftell(0);
// cppcheck-suppress nullPointer
puts(0);
// cppcheck-suppress nullPointer
@ -343,7 +343,7 @@ void uninit_ftell(void)
{
FILE *fp;
// cppcheck-suppress uninitvar
ftell(fp);
(void)ftell(fp);
}
void uninit_puts(void)