ChangeSet ID: 21247 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@winehq.org 2005/11/14 05:23:11
Modified files: dlls/kernel/tests: thread.c
Log message: Eric Pouech eric.pouech@wanadoo.fr Fix set_test_val function declaration to ensure stack is left untouched.
Patch: http://cvs.winehq.org/patch.py?id=21247
Old revision New revision Changes Path 1.30 1.31 +1 -1 wine/dlls/kernel/tests/thread.c
Index: wine/dlls/kernel/tests/thread.c diff -u -p wine/dlls/kernel/tests/thread.c:1.30 wine/dlls/kernel/tests/thread.c:1.31 --- wine/dlls/kernel/tests/thread.c:1.30 14 Nov 2005 11:23:11 -0000 +++ wine/dlls/kernel/tests/thread.c 14 Nov 2005 11:23:11 -0000 @@ -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; }