зеркало из https://github.com/mozilla/gecko-dev.git
Fixed compiler warning
This commit is contained in:
Родитель
e0c80033a0
Коммит
5a99338f59
|
@ -734,7 +734,7 @@ js_strtointeger(JSContext *cx, const jschar *s, const jschar **ep, jsint base, j
|
||||||
digit = c - 'A' + 10;
|
digit = c - 'A' + 10;
|
||||||
else
|
else
|
||||||
break;
|
break;
|
||||||
if (digit >= base)
|
if (digit >= (uintN)base)
|
||||||
break;
|
break;
|
||||||
value = value*base + digit;
|
value = value*base + digit;
|
||||||
s1++;
|
s1++;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче