summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/piglit/piglit/0001-render-ops.c-add-missing-format-string.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/piglit/piglit/0001-render-ops.c-add-missing-format-string.patch')
-rw-r--r--meta/recipes-graphics/piglit/piglit/0001-render-ops.c-add-missing-format-string.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/meta/recipes-graphics/piglit/piglit/0001-render-ops.c-add-missing-format-string.patch b/meta/recipes-graphics/piglit/piglit/0001-render-ops.c-add-missing-format-string.patch
deleted file mode 100644
index 261d98d8f6..0000000000
--- a/meta/recipes-graphics/piglit/piglit/0001-render-ops.c-add-missing-format-string.patch
+++ /dev/null
@@ -1,24 +0,0 @@
1From e21e68f6aa0f5249fce613e8fd4ac0edbd5cb7b0 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 22 Dec 2020 13:35:11 +0100
4Subject: [PATCH] render-ops.c: add missing format string
5
6Upstream-Status: Pending
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8---
9 tests/spec/ati_fragment_shader/render-ops.c | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/tests/spec/ati_fragment_shader/render-ops.c b/tests/spec/ati_fragment_shader/render-ops.c
13index 131334ba2..19a353d67 100644
14--- a/tests/spec/ati_fragment_shader/render-ops.c
15+++ b/tests/spec/ati_fragment_shader/render-ops.c
16@@ -393,7 +393,7 @@ piglit_display(void)
17 bool ok = piglit_probe_rect_halves_equal_rgba(get_test_x(i), get_test_y(i),
18 w * 2, h);
19 enum piglit_result sub_result = ok ? PIGLIT_PASS : PIGLIT_FAIL;
20- piglit_report_subtest_result(sub_result, test->name);
21+ piglit_report_subtest_result(sub_result, "%s", test->name);
22 piglit_merge_result(&result, sub_result);
23 }
24