[rpcrt4] Fix RpcMgmtSetServerStackSize prototype (2nd attempt)

Thomas Weidenmueller thomas at reactsoft.com
Wed Sep 27 08:03:20 CDT 2006


The parameter of RpcMgmtSetServerStackSize needs to be unsigned long,
not unsigned int.

- Thomas

-------------- next part --------------
Index: dlls/rpcrt4/rpc_server.c
===================================================================
RCS file: /home/wine/wine/dlls/rpcrt4/rpc_server.c,v
retrieving revision 1.58
diff -u -r1.58 rpc_server.c
--- dlls/rpcrt4/rpc_server.c	30 Jun 2006 19:16:38 -0000	1.58
+++ dlls/rpcrt4/rpc_server.c	27 Sep 2006 13:02:13 -0000
@@ -1008,8 +1008,8 @@
 /***********************************************************************
  *             RpcMgmtSetServerStackSize (RPCRT4.@)
  */
-RPC_STATUS WINAPI RpcMgmtSetServerStackSize(unsigned int ThreadStackSize)
+RPC_STATUS WINAPI RpcMgmtSetServerStackSize(unsigned long ThreadStackSize)
 {
-  FIXME("(0x%x): stub\n", ThreadStackSize);
+  FIXME("(0x%lx): stub\n", ThreadStackSize);
   return RPC_S_OK;
 }


More information about the wine-patches mailing list