libwine: Fix missing semi-colon.

Signed-off-by: Denil Verghese <denilverghese@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Denil Verghese 2018-12-06 15:01:33 +05:30 committed by Alexandre Julliard
parent 38b222c662
commit 86bab890dd
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ __declspec(naked) int wine_call_on_stack( int (*func)(void *), void *arg, void *
__asm call [ecx];
__asm mov esp, esi;
__asm pop esi;
__asm pop ebp
__asm pop ebp;
__asm ret;
}
#elif defined(__x86_64__) && defined(__GNUC__)