Thomas Weidenmueller : rpcrt4: Fix RpcMgmtSetServerStackSize prototype.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Sep 28 07:35:48 CDT 2006


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

Author: Thomas Weidenmueller <thomas at reactsoft.com>
Date:   Wed Sep 27 15:03:20 2006 +0200

rpcrt4: Fix RpcMgmtSetServerStackSize prototype.

---

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

diff --git a/dlls/rpcrt4/rpc_server.c b/dlls/rpcrt4/rpc_server.c
index 7dceb2d..a57617c 100644
--- a/dlls/rpcrt4/rpc_server.c
+++ b/dlls/rpcrt4/rpc_server.c
@@ -1008,8 +1008,8 @@ RPC_STATUS WINAPI RpcMgmtIsServerListeni
 /***********************************************************************
  *             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-cvs mailing list