dlls/rpcrt4/cstub.c : Make the non-i386 function signature match the i386 one.

Erik de Castro Lopo mle+win at mega-nerd.com
Mon Apr 21 19:54:29 CDT 2008


Compiling after "configure --enable-win64" fails due to mismatched 
function signature.

Cheers,
Erik

Changelog:
* Make the non-i386 function signature match the i386 one.

diff --git a/dlls/rpcrt4/cstub.c b/dlls/rpcrt4/cstub.c
index b416a10..83a5fb2 100644
--- a/dlls/rpcrt4/cstub.c
+++ b/dlls/rpcrt4/cstub.c
@@ -194,7 +194,7 @@ static void fill_table(IUnknownVtbl *vtbl, void **methods, DWORD num)
 #else  /* __i386__ */
 
 typedef struct {int dummy;} vtbl_method_t;
-static void fill_table(IUnknownVtbl *vtbl, DWORD num)
+static void fill_table(IUnknownVtbl *vtbl, void **methods, DWORD num)
 {
     ERR("delegated stubs are not supported on this architecture\n");
 }



-- 
-----------------------------------------------------------------
Erik de Castro Lopo
-----------------------------------------------------------------
"Christianity has a nasty habit of ignoring the major problems of
our time, including overpopulation and exhaustion of resources,
because  they aren't mentioned in the Bible."
-- Paula L. Craig



More information about the wine-patches mailing list