rpcrt4: Fix a copy and paste mistake in declaring threaddata_cs_debug.

Reported by Hans Leidekker.
This commit is contained in:
Rob Shearman 2007-11-13 18:58:51 +00:00 committed by Alexandre Julliard
parent 2fd5acedb7
commit 3634dc1b1c
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ static CRITICAL_SECTION uuid_cs = { &critsect_debug, -1, 0, 0, 0, 0 };
static CRITICAL_SECTION threaddata_cs;
static CRITICAL_SECTION_DEBUG threaddata_cs_debug =
{
0, 0, &uuid_cs,
0, 0, &threaddata_cs,
{ &threaddata_cs_debug.ProcessLocksList, &threaddata_cs_debug.ProcessLocksList },
0, 0, { (DWORD_PTR)(__FILE__ ": threaddata_cs") }
};