* include/winnt.h (GetCurrentFiber): Fix typo.

This commit is contained in:
Earnie Boyd 2001-04-08 17:00:27 +00:00
parent a1a1b83adf
commit 97101b51aa
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,8 @@
2001-04-08 Earnie Boyd <earnie@users.sourceforge.net>
* include/winnt.h (GetCurrentFiber): Fix typo.
2001-04-08 Earnie Boyd <earnie@users.sourceforge.net>
* include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.

View File

@ -2515,7 +2515,7 @@ __inline PVOID GetFiberData(void)
void* ret;
__asm__ volatile ("
movl %%fs:0x10,%0
" : "-r" (ret) /* allow use of reg eax,ebx,ecx,edx,esi,edi */
" : "=r" (ret) /* allow use of reg eax,ebx,ecx,edx,esi,edi */
:
);
return ret;