X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=7c0b81a6f660f47dec76c3bd676cb943c436538e;hp=32a66a1fa13053a149e493ae779164cbbd0014d0;hb=a7a8d2f1c85c2d7760d4d3479e90466cc3a81b04;hpb=afde3daa4992d49e190a6e8677e7317e0d367c59 diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index 32a66a1..7c0b81a 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -94,7 +94,7 @@ int main( void ) TESTCASE_NOREG( fopen( testfile, "wr" ) == NULL ); /* Undefined mode */ TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); TESTCASE( fclose( fh ) == 0 ); - remove( testfile ); + TESTCASE( remove( testfile ) == 0 ); return TEST_RESULTS; }