Module: wine Branch: master Commit: 86bab890dd2de7ab820cfd0aa0c9fe8c1b37aec7 URL: https://source.winehq.org/git/wine.git/?a=commit;h=86bab890dd2de7ab820cfd0aa...
Author: Denil Verghese denilverghese@gmail.com Date: Thu Dec 6 15:19:33 2018 +0530
libwine: Fix missing semi-colon.
Signed-off-by: Denil Verghese denilverghese@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
libs/wine/port.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libs/wine/port.c b/libs/wine/port.c index d5ce07a..29e9091 100644 --- a/libs/wine/port.c +++ b/libs/wine/port.c @@ -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__)