libwine: Fix missing semi-colon.
Signed-off-by: Denil Verghese <denilverghese@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
38b222c662
commit
86bab890dd
|
@ -126,7 +126,7 @@ __declspec(naked) int wine_call_on_stack( int (*func)(void *), void *arg, void *
|
||||||
__asm call [ecx];
|
__asm call [ecx];
|
||||||
__asm mov esp, esi;
|
__asm mov esp, esi;
|
||||||
__asm pop esi;
|
__asm pop esi;
|
||||||
__asm pop ebp
|
__asm pop ebp;
|
||||||
__asm ret;
|
__asm ret;
|
||||||
}
|
}
|
||||||
#elif defined(__x86_64__) && defined(__GNUC__)
|
#elif defined(__x86_64__) && defined(__GNUC__)
|
||||||
|
|
Loading…
Reference in New Issue