Silence compiler warning in test

Happens with some, but not all, versions of GCC/Glibc.
This commit is contained in:
Manuel Pégourié-Gonnard 2015-08-10 16:52:50 +02:00
parent faf44abf2a
commit 59e7c73329

View file

@ -52,7 +52,7 @@ x509_cert_req_check:key_file:md_type:cert_req_check_file
f = fopen( {cert_req_check_file}, "r" );
TEST_ASSERT( f != NULL );
fread( check_buf, 1, 4000, f );
(void) fread( check_buf, 1, 4000, f );
fclose( f );
pem_init( &pem );