Fix uninitialized variable warning on Windows.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1822 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2014-09-08 15:28:09 +00:00
parent 6308a7e03b
commit 70165e0ab8
1 changed files with 1 additions and 1 deletions

View File

@ -1735,7 +1735,7 @@ void MakeTestQueries(MultiQueryManager* manager, bool some,
} else { } else {
// Test every type of query. // Test every type of query.
for (int i = 0; i < many_count; ++i) { for (int i = 0; i < many_count; ++i) {
MultiQueryManager::TestType type; MultiQueryManager::TestType type = MultiQueryManager::SUCCESS;
switch (i % 7) { switch (i % 7) {
case 0: case 0:
type = MultiQueryManager::SUCCESS; type = MultiQueryManager::SUCCESS;