Browse Source

intel/aub_viewer: silence more compiler warnings

format not a string literal and no format arguments.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
tags/19.1-branchpoint
Lionel Landwerlin 6 years ago
parent
commit
30828f4646
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/intel/tools/aubinator_viewer.cpp

+ 2
- 2
src/intel/tools/aubinator_viewer.cpp View File

@@ -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))

Loading…
Cancel
Save