Skip to content
Snippets Groups Projects
Commit 9bf33bab authored by Martin Weber's avatar Martin Weber
Browse files

test: Fix struct initialization warning

parent 462beb53
No related branches found
No related tags found
1 merge request!438test: Fix struct initialization warning
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment