Rob Shearman : rpcrt4: Make some variables in the tests static.

Alexandre Julliard julliard at winehq.org
Mon Dec 31 12:32:25 CST 2007


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

Author: Rob Shearman <rob at codeweavers.com>
Date:   Sun Dec 30 16:46:21 2007 +0000

rpcrt4: Make some variables in the tests static.

---

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

diff --git a/dlls/rpcrt4/tests/rpc.c b/dlls/rpcrt4/tests/rpc.c
index 3828260..a720370 100644
--- a/dlls/rpcrt4/tests/rpc.c
+++ b/dlls/rpcrt4/tests/rpc.c
@@ -180,7 +180,7 @@ static RPC_DISPATCH_FUNCTION IFoo_table[] =
     0
 };
 
-RPC_DISPATCH_TABLE IFoo_v0_0_DispatchTable =
+static RPC_DISPATCH_TABLE IFoo_v0_0_DispatchTable =
 {
     0,
     IFoo_table
@@ -199,7 +199,7 @@ static const RPC_SERVER_INTERFACE IFoo___RpcServerInterface =
     0,
 };
 
-RPC_IF_HANDLE IFoo_v0_0_s_ifspec = (RPC_IF_HANDLE)& IFoo___RpcServerInterface;
+static RPC_IF_HANDLE IFoo_v0_0_s_ifspec = (RPC_IF_HANDLE)& IFoo___RpcServerInterface;
 
 static void test_rpc_ncacn_ip_tcp(void)
 {




More information about the wine-cvs mailing list