зеркало из https://github.com/mozilla/gecko-dev.git
Fixing build bustage. Incorrect usage "foreach my $foo qw(bar baz)" where the qw construct needs to be surrounded by parentheses.
This commit is contained in:
Родитель
ccc07fce55
Коммит
f0bca9f7d8
|
@ -239,7 +239,7 @@ sub SaveEmail {
|
|||
$updateString .= 'ExcludeSelf~';
|
||||
}
|
||||
|
||||
foreach my $flag qw(FlagRequestee FlagRequester) {
|
||||
foreach my $flag (qw(FlagRequestee FlagRequester)) {
|
||||
$updateString .= "~$flag~" . (defined($::FORM{$flag}) ? "on" : "");
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче