IntelRealSense / librealsense

Intel® RealSense™ SDK
https://www.intelrealsense.com/
Apache License 2.0
7.42k stars 4.8k forks source link

fix 'format not a string literal' warning #13048

Closed maloel closed 1 week ago

maloel commented 1 week ago

PR #13041 introduced a line:

ImGui::Text( title );

Which is entirely valid and yet generates a warning:

warning: format not a string literal and no format arguments [-Wformat-security]

This fixes it.