[PATCH] wine_call_on_stack:Avoid missing semi-colon in the declaration.
6 Dec
2018
6 Dec
'18
9:31 a.m.
A missing semi-colon is added. Signed-off-by: Denil Verghese <denilverghese(a)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
2569
Age (days ago)
2569
Last active (days ago)
0 comments
1 participants
participants (1)
-
Denil Verghese