mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Bug 934398 - Fix warning about assignment to undeclared variable 'p' r=jmaher
From 2cb477ab9b0da93c6a9f188a3e3cf62528d308ce Mon Sep 17 00:00:00 2001
This commit is contained in:
parent
9fe19cfeb5
commit
edc4742a8b
@ -409,7 +409,7 @@ function getTestList(params, callback) {
|
||||
}
|
||||
|
||||
var config = readConfig();
|
||||
for (p in params) {
|
||||
for (var p in params) {
|
||||
if (params[p] == 1) {
|
||||
config[p] = true;
|
||||
} else if (params[p] == 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user