Skip to content

Commit

Permalink
fix 'format not a string literal' warning
Browse files Browse the repository at this point in the history
  • Loading branch information
maloel committed Jun 18, 2024
1 parent 4f9227f commit da01600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/stream-model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1279,7 +1279,7 @@ namespace rs2
auto rc = ImGui::GetCursorPos();
ImGui::SetCursorPos( { rc.x + 12, rc.y + 4 } );
ImGui::PushStyleColor( ImGuiCol_Text, from_rgba( 255, 255, 255, 255, true ) );
ImGui::Text( title );
ImGui::Text( "%s", title );
ImGui::PopStyleColor( 1 );
ImGui::SetCursorPos( { rc.x, rc.y + line_h } );
total_h += line_h;
Expand Down

0 comments on commit da01600

Please sign in to comment.