From: Ian Romanick Date: Fri, 16 Oct 2015 16:18:24 +0000 (-0700) Subject: i965: Add missing close-parenthesis in error messages X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8f84a8e257291168ec4b394b1eaa6acef1538cea;p=mesa.git i965: Add missing close-parenthesis in error messages Trivial. Signed-off-by: Ian Romanick --- diff --git a/src/mesa/drivers/dri/i965/intel_fbo.c b/src/mesa/drivers/dri/i965/intel_fbo.c index 7f281fafc77..3a4a53a07e6 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; }