Bug 1092880 - Preferences.jsm MIN_INT is off by one r=gavin

This commit is contained in:
Erik Vold 2014-11-07 18:13:36 -08:00
Родитель cfe4cbfe1b
Коммит 5a2b93c841
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -16,7 +16,7 @@ Cu.import("resource://gre/modules/XPCOMUtils.jsm");
// because the native preferences code treats integers as NSPR PRInt32s,
// which are 32-bit signed integers on all platforms.
const MAX_INT = 0x7FFFFFFF; // Math.pow(2, 31) - 1
const MIN_INT = -MAX_INT;
const MIN_INT = -0x80000000;
this.Preferences =
function Preferences(args) {