mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 10:45:44 +01:00
Fix global variable shadowing
This commit is contained in:
parent
6437b221a3
commit
f45dab1939
@ -141,9 +141,9 @@ static int restore_output( FILE** out_stream, int old_fd )
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void close_output( FILE* stdout )
|
static void close_output( FILE* out_stream )
|
||||||
{
|
{
|
||||||
fclose( stdout );
|
fclose( out_stream );
|
||||||
}
|
}
|
||||||
#endif /* __unix__ || __APPLE__ __MACH__ */
|
#endif /* __unix__ || __APPLE__ __MACH__ */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user