Mesa (master): i965: Add missing close-parenthesis in error messages

Ian Romanick idr at kemper.freedesktop.org
Mon Oct 26 23:16:17 UTC 2015


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

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Fri Oct 16 09:18:24 2015 -0700

i965: Add missing close-parenthesis in error messages

Trivial.

Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>

---

 src/mesa/drivers/dri/i965/intel_fbo.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/intel_fbo.c b/src/mesa/drivers/dri/i965/intel_fbo.c
index 7f281fa..3a4a53a 100644
--- a/src/mesa/drivers/dri/i965/intel_fbo.c
+++ b/src/mesa/drivers/dri/i965/intel_fbo.c
@@ -343,14 +343,14 @@ intel_image_target_renderbuffer_storage(struct gl_context *ctx,
    if (image->planar_format && image->planar_format->nplanes > 1) {
       _mesa_error(ctx, GL_INVALID_OPERATION,
             "glEGLImageTargetRenderbufferStorage(planar buffers are not "
-               "supported as render targets.");
+               "supported as render targets.)");
       return;
    }
 
    /* __DRIimage is opaque to the core so it has to be checked here */
    if (!brw->format_supported_as_render_target[image->format]) {
       _mesa_error(ctx, GL_INVALID_OPERATION,
-            "glEGLImageTargetRenderbufferStorage(unsupported image format");
+            "glEGLImageTargetRenderbufferStorage(unsupported image format)");
       return;
    }
 




More information about the mesa-commit mailing list