No bug, fix windows build bustage due to int32 type mismatch, r=burning, rs=njn

This commit is contained in:
David Mandelin 2010-09-13 14:52:33 -07:00
Родитель 1e026a43c4
Коммит 18901a30ac
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -740,8 +740,8 @@ struct JSStackFrame
static ptrdiff_t offsetOfThis(JSFunction *fun) {
return fun == NULL
? -1 * sizeof(js::Value)
: -(fun->nargs + 1) * sizeof(js::Value);
? -1 * ptrdiff_t(sizeof(js::Value))
: -(fun->nargs + 1) * ptrdiff_t(sizeof(js::Value));
}
static ptrdiff_t offsetOfFormalArg(JSFunction *fun, uintN i) {

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

@ -1039,7 +1039,7 @@ FracNumberToCString(JSContext *cx, ToCStringBuf *cbuf, jsdouble d, jsint base =
{
#ifdef DEBUG
{
int32 _;
int32_t _;
JS_ASSERT(!JSDOUBLE_IS_INT32(d, &_));
}
#endif