Fix set_test_val function declaration to ensure stack is left

untouched.
This commit is contained in:
Eric Pouech 2005-11-14 11:23:11 +00:00 committed by Alexandre Julliard
parent bc52612f77
commit ff6d30e485
1 changed files with 1 additions and 1 deletions

View File

@ -611,7 +611,7 @@ static VOID test_GetThreadExitCode(void)
static int test_value = 0;
static void set_test_val( int val )
static void WINAPI set_test_val( int val )
{
test_value += val;
}