From 4e58e56f6fdc0dc240d9ab224f962effe0145a9e Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 15 Sep 2011 08:02:52 -0600 Subject: [PATCH] mesa: add missing ')' in error message --- src/mesa/main/drawpix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index 89c2b26..b7e2c36 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; } -- 2.7.4