i965: Add missing close-parenthesis in error messages
authorIan Romanick <ian.d.romanick@intel.com>
Fri, 16 Oct 2015 16:18:24 +0000 (09:18 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Mon, 26 Oct 2015 23:15:55 +0000 (16:15 -0700)
Trivial.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/drivers/dri/i965/intel_fbo.c

index 7f281fafc77477ab5c574a66aaf6a36ce438b0b7..3a4a53a07e6e237c76289b1eba03672ca211fefa 100644 (file)
@@ -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;
    }