Fix formatting

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2016-08-25 12:06:17 +02:00
parent eccefd9704
commit 988629da1d
1 changed files with 6 additions and 5 deletions

View File

@ -1134,10 +1134,11 @@ SetThreadName(DWORD dwThreadID, const char* threadName)
#endif #endif
}; };
__try { __try
RaiseException (MS_VC_EXCEPTION, 0, sizeof (info)/sizeof (ULONG_PTR), info); {
} RaiseException (MS_VC_EXCEPTION, 0, sizeof (info) / sizeof (ULONG_PTR),
__except (NO_ERROR) { info);
} }
__except (NO_ERROR)
__endtry __endtry
} }