Commit dcbe616a authored by Alexandre Julliard's avatar Alexandre Julliard

include: Fix typo in the 64-bit version of GetProcessHeap().

parent 0719b6ed
...@@ -2513,7 +2513,7 @@ extern inline HANDLE WINAPI GetProcessHeap(void) ...@@ -2513,7 +2513,7 @@ extern inline HANDLE WINAPI GetProcessHeap(void)
{ {
HANDLE *pdb; HANDLE *pdb;
#ifdef __x86_64__ #ifdef __x86_64__
__asm__ __volatile__( ".byte 0x64\n\tmovq 0x60,%0" : "=r" (pdb) ); __asm__ __volatile__( ".byte 0x65\n\tmovq 0x60,%0" : "=r" (pdb) );
return pdb[0x30 / sizeof(HANDLE)]; /* get dword at offset 0x30 in pdb */ return pdb[0x30 / sizeof(HANDLE)]; /* get dword at offset 0x30 in pdb */
#else #else
__asm__ __volatile__( ".byte 0x64\n\tmovl 0x30,%0" : "=r" (pdb) ); __asm__ __volatile__( ".byte 0x64\n\tmovl 0x30,%0" : "=r" (pdb) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment