Skip to content

Commit

Permalink
Use proper string formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfpld committed Jun 17, 2020
1 parent a8c752e commit 11e1671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/TracyView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12656,7 +12656,7 @@ void View::DrawInfo()
pdqsort_branchless( vec.begin(), vec.end(), []( const auto& lhs, const auto& rhs ) { return strcmp( lhs->first, rhs->first ) < 0; } );
for( auto& v : vec )
{
ImGui::BulletText( v->first );
ImGui::BulletText( "%s", v->first );
if( ImGui::IsItemClicked() ) ViewSource( v->first, 0 );
ImGui::SameLine();
ImGui::TextDisabled( "(%s)", MemSizeToString( v->second.len ) );
Expand Down

0 comments on commit 11e1671

Please sign in to comment.