Alexandre Julliard : rpcrt4: Make a variable static.

Alexandre Julliard julliard at winehq.org
Thu Dec 4 09:02:35 CST 2008


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Dec  4 12:48:08 2008 +0100

rpcrt4: Make a variable static.

---

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

diff --git a/dlls/rpcrt4/rpcrt4_main.c b/dlls/rpcrt4/rpcrt4_main.c
index 1f0b1bb..177c82c 100644
--- a/dlls/rpcrt4/rpcrt4_main.c
+++ b/dlls/rpcrt4/rpcrt4_main.c
@@ -78,7 +78,7 @@ static CRITICAL_SECTION_DEBUG threaddata_cs_debug =
 };
 static CRITICAL_SECTION threaddata_cs = { &threaddata_cs_debug, -1, 0, 0, 0, 0 };
 
-struct list threaddata_list = LIST_INIT(threaddata_list);
+static struct list threaddata_list = LIST_INIT(threaddata_list);
 
 struct context_handle_list
 {




More information about the wine-cvs mailing list