xserver: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri May 8 15:13:21 UTC 2020


 test/xtest.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9bf33bab32fdfbe68b287947f55906ff0ac67f04
Author: Martin Weber <martin.weber at secunet.com>
Date:   Fri May 8 16:45:50 2020 +0200

    test: Fix struct initialization warning

diff --git a/test/xtest.c b/test/xtest.c
index fc5e43368..d7e6620e6 100644
--- a/test/xtest.c
+++ b/test/xtest.c
@@ -61,7 +61,7 @@ xtest_init_devices(void)
 {
     ScreenRec screen = {0};
     ClientRec server_client = {0};
-    WindowRec root = {0};
+    WindowRec root = {{0}};
     WindowOptRec optional = {0};
 
     /* random stuff that needs initialization */


More information about the xorg-commit mailing list