mirror of
https://github.com/reactos/reactos.git
synced 2025-06-11 04:47:22 +00:00
Fix a cast
svn path=/trunk/; revision=22437
This commit is contained in:
parent
9945135514
commit
cee03bff64
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue