rpcrt4: Make a variable static.

This commit is contained in:
Alexandre Julliard 2008-12-04 12:48:08 +01:00
parent 4bb2199c8e
commit 42dbdb138a
1 changed files with 1 additions and 1 deletions

View File

@ -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
{