ntdll: Fix build on PowerPC.

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
André Hentschel 2018-03-23 15:29:00 +01:00 committed by Alexandre Julliard
parent 73f9ceddab
commit 7b3e9ff935
1 changed files with 1 additions and 1 deletions

View File

@ -1171,7 +1171,7 @@ static void thread_startup( void *param )
context.Iar = (DWORD)info->start;
if (info->suspend) wait_suspend( &context );
attach_dlls( &context, (void **)&context->Gpr3 );
attach_dlls( &context, (void **)&context.Gpr3 );
((thread_start_func)context.Iar)( (LPTHREAD_START_ROUTINE)context.Gpr3, (void *)context.Gpr4 );
}