From 324cb3d625fdc844885f890f9cc02ad044cbf5ad Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 8 Sep 2023 14:01:26 +0200 Subject: [PATCH] Update TracySystem.cpp --- public/common/TracySystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/common/TracySystem.cpp b/public/common/TracySystem.cpp index 15e25adb..301483eb 100644 --- a/public/common/TracySystem.cpp +++ b/public/common/TracySystem.cpp @@ -219,7 +219,7 @@ TRACY_API const char* GetThreadName( uint32_t id ) if( hnd != 0 ) { PWSTR tmp; - if ( SUCCEEDED( _GetThreadDescription( hnd, &tmp ) ) ) + if( SUCCEEDED( _GetThreadDescription( hnd, &tmp ) ) ) { auto ret = wcstombs( buf, tmp, 256 ); CloseHandle( hnd );