From: Brian Paul Date: Thu, 15 Sep 2011 14:02:52 +0000 (-0600) Subject: mesa: add missing ')' in error message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4e58e56f6fdc0dc240d9ab224f962effe0145a9e;p=mesa.git mesa: add missing ')' in error message --- diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index 89c2b26973c..b7e2c36e192 100644 --- a/src/mesa/main/drawpix.c +++ b/src/mesa/main/drawpix.c @@ -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; }