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:
parent
6308a7e03b
commit
70165e0ab8
|
@ -1735,7 +1735,7 @@ void MakeTestQueries(MultiQueryManager* manager, bool some,
|
|||
} else {
|
||||
// Test every type of query.
|
||||
for (int i = 0; i < many_count; ++i) {
|
||||
MultiQueryManager::TestType type;
|
||||
MultiQueryManager::TestType type = MultiQueryManager::SUCCESS;
|
||||
switch (i % 7) {
|
||||
case 0:
|
||||
type = MultiQueryManager::SUCCESS;
|
||||
|
|
Loading…
Reference in New Issue