diff options
author | Brian Paul <[email protected]> | 2011-09-15 08:02:52 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-09-15 08:02:57 -0600 |
commit | 4e58e56f6fdc0dc240d9ab224f962effe0145a9e (patch) | |
tree | 72a5e9e985c385b02a11c6c69650caf944490aee | |
parent | 41f3773c1dc8e7a213ff7e730ada2cf48a60b209 (diff) |
mesa: add missing ')' in error message
-rw-r--r-- | src/mesa/main/drawpix.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |