[PATCH] wine_call_on_stack:Avoid missing semi-colon in the declaration.

Denil Verghese denilverghese at gmail.com
Thu Dec 6 03:31:33 CST 2018


A missing semi-colon is added.

Signed-off-by: Denil Verghese <denilverghese at gmail.com>
---
 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 d5ce07aceb..29e9091789 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__)
--
2.16.2.windows.1



More information about the wine-devel mailing list