commit | e709f7c9e07b54542f368297272b0fca36304300 | [log] [tgz] |
---|---|---|
author | Janos Follath <janos.follath@arm.com> | Thu Oct 13 11:26:29 2016 +0100 |
committer | Simon Butcher <simon.butcher@arm.com> | Thu Oct 13 13:20:12 2016 +0100 |
tree | 371cab23b44d06b261abaf859d0c9e914fa0fa00 | |
parent | e019296ab7d0206dc6bc137a398b3f7f5c15f733 [diff] [blame] |
Fix global variable shadowing
diff --git a/tests/suites/helpers.function b/tests/suites/helpers.function index ff3ab99..63815df 100644 --- a/tests/suites/helpers.function +++ b/tests/suites/helpers.function
@@ -141,9 +141,9 @@ return 0; } -static void close_output( FILE* stdout ) +static void close_output( FILE* out_stream ) { - fclose( stdout ); + fclose( out_stream ); } #endif /* __unix__ || __APPLE__ __MACH__ */