Alexandre Julliard : rpcrt4: Add appropriate stdcall decorations to assembly functions.
Module: wine Branch: master Commit: f2d65b5563f2040e5f0ac14807a728626e6b78e4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f2d65b5563f2040e5f0ac14807... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Sun Jun 14 15:34:24 2009 +0200 rpcrt4: Add appropriate stdcall decorations to assembly functions. --- dlls/rpcrt4/cproxy.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/rpcrt4/cproxy.c b/dlls/rpcrt4/cproxy.c index 5186ea6..0887aa2 100644 --- a/dlls/rpcrt4/cproxy.c +++ b/dlls/rpcrt4/cproxy.c @@ -76,7 +76,7 @@ struct thunk { extern void call_stubless_func(void); __ASM_GLOBAL_FUNC(call_stubless_func, "pushl %esp\n\t" /* pointer to index */ - "call " __ASM_NAME("ObjectStubless") "\n\t" + "call " __ASM_NAME("ObjectStubless") __ASM_STDCALL(4) "\n\t" "popl %edx\n\t" /* args size */ "movl (%esp),%ecx\n\t" /* return address */ "addl %edx,%esp\n\t"
participants (1)
-
Alexandre Julliard