Fix a cast

svn path=/trunk/; revision=22437
This commit is contained in:
Hervé Poussineau 2006-06-20 18:56:41 +00:00
parent 9945135514
commit cee03bff64

View file

@ -3742,7 +3742,7 @@ DWORD __readfsdword(DWORD);
#pragma intrinsic(__readfsdword)
__inline PVOID GetCurrentFiber(void) { return (PVOID)(ULONG_PTR)__readfsdword(0x10); }
__inline struct _TEB * NtCurrentTeb(void) { return (PVOID)(ULONG_PTR)__readfsdword(0x18); }
__inline struct _TEB * NtCurrentTeb(void) { return (struct _TEB *)(ULONG_PTR)__readfsdword(0x18); }
#else