Bug 743813 - fix build bustage due to signedness warning in WARNINGS_AS_ERRORS dir - no review

This commit is contained in:
Benoit Jacob 2012-04-10 12:23:23 -04:00
Родитель b2a46e2132
Коммит 1b86035766
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -135,7 +135,7 @@ WebGLContext::ActiveTexture(WebGLenum texture)
return NS_OK;
if (texture < LOCAL_GL_TEXTURE0 ||
texture >= LOCAL_GL_TEXTURE0 + mGLMaxTextureUnits)
texture >= LOCAL_GL_TEXTURE0 + PRUint32(mGLMaxTextureUnits))
{
return ErrorInvalidEnum(
"ActiveTexture: texture unit %d out of range. "