Mesa (master): mesa: add missing ')' in error message

Brian Paul brianp at kemper.freedesktop.org
Thu Sep 15 15:05:44 UTC 2011


Module: Mesa
Branch: master
Commit: 4e58e56f6fdc0dc240d9ab224f962effe0145a9e
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4e58e56f6fdc0dc240d9ab224f962effe0145a9e

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Sep 15 08:02:52 2011 -0600

mesa: add missing ')' in error message

---

 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 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;
    }
 




More information about the mesa-commit mailing list