[rpcrt4] Fix RpcMgmtSetServerStackSize prototype

Thomas Weidenmueller wine-patches at reactsoft.com
Wed Sep 27 07:40:53 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 12:38:00 -0000
@@ -1008,7 +1008,7 @@
 /***********************************************************************
  *             RpcMgmtSetServerStackSize (RPCRT4.@)
  */
-RPC_STATUS WINAPI RpcMgmtSetServerStackSize(unsigned int ThreadStackSize)
+RPC_STATUS WINAPI RpcMgmtSetServerStackSize(unsigned long ThreadStackSize)
 {
   FIXME("(0x%x): stub\n", ThreadStackSize);
   return RPC_S_OK;


More information about the wine-patches mailing list