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 );