Bug 959356 try #2 - fix the spelling and type of the isWow64 measurement, r=rnewman

--HG--
extra : rebase_source : 1c07d8481b8152af39fea889504d4fdfef42da53
This commit is contained in:
Benjamin Smedberg 2014-05-19 14:02:04 -04:00
Родитель 0cf5a7b5b3
Коммит a24944a5fb
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -450,7 +450,7 @@ SysInfoProvider.prototype = Object.freeze({
name: "name",
version: "version",
arch: "architecture",
isWOW64: "isWow64",
isWow64: "isWow64",
},
collectConstantData: function () {
@ -493,6 +493,7 @@ SysInfoProvider.prototype = Object.freeze({
// Property is only present on Windows. hasKey() skipping from
// above ensures undefined or null doesn't creep in here.
value = value ? 1 : 0;
method = "setLastNumeric";
break;
}