test: Fix struct initialization warning

This commit is contained in:
Martin Weber 2020-05-08 16:45:50 +02:00
parent 462beb5338
commit 9bf33bab32

View File

@ -61,7 +61,7 @@ xtest_init_devices(void)
{ {
ScreenRec screen = {0}; ScreenRec screen = {0};
ClientRec server_client = {0}; ClientRec server_client = {0};
WindowRec root = {0}; WindowRec root = {{0}};
WindowOptRec optional = {0}; WindowOptRec optional = {0};
/* random stuff that needs initialization */ /* random stuff that needs initialization */