Skip to content

Commit

Permalink
Merge pull request #727 from idbrii/fix-warn-conversion
Browse files Browse the repository at this point in the history
Fix warning: Cast thread id to uint32_t
  • Loading branch information
wolfpld authored Feb 17, 2024
2 parents 5ce238e + 7d8432b commit a2dd51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/client/TracyProfiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3442,7 +3442,7 @@ bool Profiler::HandleServerQuery()
}
else
{
SendString( ptr, GetThreadName( ptr ), QueueType::ThreadName );
SendString( ptr, GetThreadName( (uint32_t)ptr ), QueueType::ThreadName );
}
break;
case ServerQuerySourceLocation:
Expand Down

0 comments on commit a2dd51a

Please sign in to comment.