mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
winealsa.drv: Conform critical section DebugInfo names.
This commit is contained in:
parent
021b004cf5
commit
ea363dc6a7
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ int ALSA_InitRingMessage(ALSA_MSG_RING* omr)
|
||||||
omr->messages = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,omr->ring_buffer_size * sizeof(ALSA_MSG));
|
omr->messages = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,omr->ring_buffer_size * sizeof(ALSA_MSG));
|
||||||
|
|
||||||
InitializeCriticalSection(&omr->msg_crst);
|
InitializeCriticalSection(&omr->msg_crst);
|
||||||
omr->msg_crst.DebugInfo->Spare[0] = (DWORD_PTR)"WINEALSA_msg_crst";
|
omr->msg_crst.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": ALSA_MSG_RING.msg_crst");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue