Bug 1259294: Part 2 - Use MOZ_ALWAYS_SUCCEEDS. r=froydnj

This commit is contained in:
Kyle Huey
2016-03-28 10:28:15 -07:00
parent 5ec2e680df
commit 20d0dc7286
81 changed files with 476 additions and 528 deletions

View File

@@ -144,8 +144,7 @@ HTMLOptionElement::Index()
}
int32_t index = defaultIndex;
MOZ_ALWAYS_TRUE(NS_SUCCEEDED(
options->GetOptionIndex(this, 0, true, &index)));
MOZ_ALWAYS_SUCCEEDS(options->GetOptionIndex(this, 0, true, &index));
return index;
}