https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6e5d80df69c5f094af45fd...
commit 6e5d80df69c5f094af45fda2e4d42569a7ab247f Author: Victor Perevertkin victor.perevertkin@reactos.org AuthorDate: Tue Apr 26 02:33:43 2022 +0300 Commit: Victor Perevertkin victor.perevertkin@reactos.org CommitDate: Tue Apr 26 03:38:36 2022 +0300
[COMPILER_APITEST] Convert global variables to static ones --- modules/rostests/apitests/compiler/pseh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/rostests/apitests/compiler/pseh.c b/modules/rostests/apitests/compiler/pseh.c index 7090394f7cb..1b3577fd90d 100644 --- a/modules/rostests/apitests/compiler/pseh.c +++ b/modules/rostests/apitests/compiler/pseh.c @@ -1069,7 +1069,7 @@ DEFINE_TEST(test_yield_5) return test_yield_5_helper() == return_positive() && test_yield_5_ret == return_positive(); }
-int test_yield_6_ret; +static int test_yield_6_ret;
static int test_yield_6_helper(void)