зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1022703 - fix unused variable warning in nsChromeRegistryChrome.cpp; r=bsmedberg
This commit is contained in:
Родитель
46fee89d00
Коммит
2afff3e115
|
@ -614,12 +614,12 @@ nsChromeRegistryChrome::kTableOps = {
|
|||
nsChromeRegistryChrome::ProviderEntry*
|
||||
nsChromeRegistryChrome::nsProviderArray::GetProvider(const nsACString& aPreferred, MatchType aType)
|
||||
{
|
||||
int32_t i = mArray.Length();
|
||||
size_t i = mArray.Length();
|
||||
if (!i)
|
||||
return nullptr;
|
||||
|
||||
ProviderEntry* found = nullptr; // Only set if we find a partial-match locale
|
||||
ProviderEntry* entry;
|
||||
ProviderEntry* entry = nullptr;
|
||||
|
||||
while (i--) {
|
||||
entry = &mArray[i];
|
||||
|
|
Загрузка…
Ссылка в новой задаче