Author: sir_richard Date: Tue Nov 23 16:35:48 2010 New Revision: 49730
URL: http://svn.reactos.org/svn/reactos?rev=49730&view=rev Log: [WINE]: Fix non-x86 versions of Wine's push/pop exception frame macro.
Modified: trunk/reactos/include/reactos/wine/exception.h
Modified: trunk/reactos/include/reactos/wine/exception.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/wine/except... ============================================================================== --- trunk/reactos/include/reactos/wine/exception.h [iso-8859-1] (original) +++ trunk/reactos/include/reactos/wine/exception.h [iso-8859-1] Tue Nov 23 16:35:48 2010 @@ -83,7 +83,7 @@ #else NT_TIB *teb = (NT_TIB *)NtCurrentTeb(); frame->Prev = teb->ExceptionList; - teb->ExceptionList = frame; + teb->ExceptionList = (PVOID)frame; return frame->Prev; #endif } @@ -96,7 +96,7 @@ #else NT_TIB *teb = (NT_TIB *)NtCurrentTeb(); frame->Prev = teb->ExceptionList; - teb->ExceptionList = frame; + teb->ExceptionList = (PVOID)frame; return frame->Prev; #endif }