commit | f45dab19394b281b8d7776b94cb5354f58847c7c | [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:54:48 2016 +0100 |
tree | e16f3a264198355eb3bbd0aeb3c2e59bd1ecbef8 | |
parent | 6437b221a349c2714bb723b0c7c8cb79c47c7f5a [diff] |
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__ */