mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-22 05:46:41 +01:00
Fix global variable shadowing
This commit is contained in:
parent
e019296ab7
commit
e709f7c9e0
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue