summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-test-xtest-Initialize-array-with-braces.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-test-xtest-Initialize-array-with-braces.patch')
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-test-xtest-Initialize-array-with-braces.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-test-xtest-Initialize-array-with-braces.patch b/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-test-xtest-Initialize-array-with-braces.patch
deleted file mode 100644
index c0c242814b..0000000000
--- a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-test-xtest-Initialize-array-with-braces.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1From 8a382c015cd3c69fcfc146ef03dcbf30c77ff207 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 1 Mar 2019 09:47:57 -0800
4Subject: [PATCH] test/xtest: Initialize array with braces
5
6Fixes an error when extra warnings are enabled, this is caught with clang
7
8test/xtest.c:64:23: error: suggest braces around initialization of subobject [-Werror,-Wmissing-braces]
9 WindowRec root = {0};
10 ^
11 {}
121 error generated.
13
14Upstream-Status: Pending
15
16Signed-off-by: Khem Raj <raj.khem@gmail.com>
17---
18 test/xtest.c | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/test/xtest.c b/test/xtest.c
22index fc5e433..d7e6620 100644
23--- a/test/xtest.c
24+++ b/test/xtest.c
25@@ -61,7 +61,7 @@ xtest_init_devices(void)
26 {
27 ScreenRec screen = {0};
28 ClientRec server_client = {0};
29- WindowRec root = {0};
30+ WindowRec root = {{0}};
31 WindowOptRec optional = {0};
32
33 /* random stuff that needs initialization */
34--
352.21.0
36