diff options
author | Lionel Landwerlin <[email protected]> | 2019-02-25 10:50:59 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-02-25 13:11:16 +0000 |
commit | 30828f4646af0318337c5b8b6baf4868f05df667 (patch) | |
tree | 16ddbd764293aa723f646fdc316351439e36d505 /src/intel/tools | |
parent | 91df8b1780faf39eaf39cc279a2459ee1fa3a8e3 (diff) |
intel/aub_viewer: silence more compiler warnings
format not a string literal and no format arguments.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/intel/tools')
-rw-r--r-- | src/intel/tools/aubinator_viewer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/tools/aubinator_viewer.cpp b/src/intel/tools/aubinator_viewer.cpp index 0c9cb77d703..cf1f8024b4a 100644 --- a/src/intel/tools/aubinator_viewer.cpp +++ b/src/intel/tools/aubinator_viewer.cpp @@ -1008,7 +1008,7 @@ display_aubfile_window(struct window *win) ImGui::Text("Execbufs %u", context.file->n_execs); ImGui::Text("PCI ID: 0x%x", context.file->pci_id); ImGui::Text("Application name: %s", context.file->app_name); - ImGui::Text(gen_get_device_name(context.file->pci_id)); + ImGui::Text("%s", gen_get_device_name(context.file->pci_id)); ImGui::SetNextWindowContentWidth(500); if (ImGui::BeginPopupModal("Help", NULL, ImGuiWindowFlags_AlwaysAutoResize)) { @@ -1030,7 +1030,7 @@ display_aubfile_window(struct window *win) align += ImGui::GetStyle().WindowPadding.x + 10; for (uint32_t i = 0; i < ARRAY_SIZE(texts); i += 2) { - ImGui::Text(texts[i]); ImGui::SameLine(align); ImGui::Text(texts[i + 1]); + ImGui::Text("%s", texts[i]); ImGui::SameLine(align); ImGui::Text("%s", texts[i + 1]); } if (ImGui::Button("Done") || ImGui::IsKeyPressed(ImGuiKey_Escape)) |