1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-30 20:53:52 +00:00

Merge pull request #727 from idbrii/fix-warn-conversion

Fix warning: Cast thread id to uint32_t
This commit is contained in:
Bartosz Taudul 2024-02-17 02:22:04 +01:00 committed by GitHub
commit a2dd51ae4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3442,7 +3442,7 @@ bool Profiler::HandleServerQuery()
} }
else else
{ {
SendString( ptr, GetThreadName( ptr ), QueueType::ThreadName ); SendString( ptr, GetThreadName( (uint32_t)ptr ), QueueType::ThreadName );
} }
break; break;
case ServerQuerySourceLocation: case ServerQuerySourceLocation: