Fixed regression in test/cfg/std.c introduced by b0d09926fb
.
This commit is contained in:
parent
b0d09926fb
commit
8a0f856e95
|
@ -85,7 +85,7 @@ void nullpointer(int value)
|
||||||
// cppcheck-suppress nullPointer
|
// cppcheck-suppress nullPointer
|
||||||
ferror(0);
|
ferror(0);
|
||||||
// cppcheck-suppress nullPointer
|
// cppcheck-suppress nullPointer
|
||||||
ftell(0);
|
(void)ftell(0);
|
||||||
// cppcheck-suppress nullPointer
|
// cppcheck-suppress nullPointer
|
||||||
puts(0);
|
puts(0);
|
||||||
// cppcheck-suppress nullPointer
|
// cppcheck-suppress nullPointer
|
||||||
|
@ -343,7 +343,7 @@ void uninit_ftell(void)
|
||||||
{
|
{
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
// cppcheck-suppress uninitvar
|
// cppcheck-suppress uninitvar
|
||||||
ftell(fp);
|
(void)ftell(fp);
|
||||||
}
|
}
|
||||||
|
|
||||||
void uninit_puts(void)
|
void uninit_puts(void)
|
||||||
|
|
Loading…
Reference in New Issue