mesa: add missing ')' in error message

This commit is contained in:
Brian Paul 2011-09-15 08:02:52 -06:00
parent 41f3773c1d
commit 4e58e56f6f

View file

@ -62,7 +62,7 @@ _mesa_DrawPixels( GLsizei width, GLsizei height,
if (width < 0 || height < 0) {
_mesa_error( ctx, GL_INVALID_VALUE, "glDrawPixels(width or height < 0" );
_mesa_error( ctx, GL_INVALID_VALUE, "glDrawPixels(width or height < 0)" );
return;
}