test: Fix struct initialization warning
This commit is contained in:
parent
462beb5338
commit
9bf33bab32
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue