Steven Edwards : rpcrt4: Correct the number of aguments for fill_method on unsupported architectures .

Alexandre Julliard julliard at winehq.org
Tue Apr 22 06:46:53 CDT 2008


Module: wine
Branch: master
Commit: d0ddece843064b8acbc90bb8a5c293879abca248
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d0ddece843064b8acbc90bb8a5c293879abca248

Author: Steven Edwards <winehacker at gmail.com>
Date:   Mon Apr 21 09:49:59 2008 -0400

rpcrt4: Correct the number of aguments for fill_method on unsupported architectures.

---

 dlls/rpcrt4/cstub.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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");
 }




More information about the wine-cvs mailing list