Fix constant in SetCurrentThreadName.

TBR=juberti@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/46329004

Cr-Commit-Position: refs/heads/master@{#9202}
This commit is contained in:
André Susano Pinto 2015-05-18 09:55:35 +02:00
parent bebc69010d
commit a6e883bc6b

View File

@ -460,7 +460,7 @@ void SetCurrentThreadName(const char* name) {
LPCSTR szName;
DWORD dwThreadID;
DWORD dwFlags;
} threadname_info = {0x100, name, static_cast<DWORD>(-1), 0};
} threadname_info = {0x1000, name, static_cast<DWORD>(-1), 0};
__try {
::RaiseException(0x406D1388, 0, sizeof(threadname_info) / sizeof(DWORD),