dxgi/tests: Fix uninitialized variable warnings.

Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Zhiyi Zhang 2020-04-06 19:53:26 +08:00 committed by Alexandre Julliard
parent c82c63f58a
commit 03885ef4a1
1 changed files with 1 additions and 1 deletions

View File

@ -2123,7 +2123,7 @@ static void test_get_containing_output(void)
{-49, -50}, {-50, -50}, {-51, -50},
{-49, -51}, {-50, -51}, {-51, -51},
};
unsigned int x, y;
unsigned int x = 0, y = 0;
switch (i)
{