From b92e7f2da9b72ca239204a7be802a5c64ff6cf4c Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 13 Apr 2014 11:53:16 +1200 Subject: [PATCH] mesa: Fix typo in error message Signed-off-by: Chris Forbes --- src/mesa/main/drawpix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index 63e5870e687..1865a66b9da 100644 --- a/src/mesa/main/drawpix.c +++ b/src/mesa/main/drawpix.c @@ -109,7 +109,7 @@ _mesa_DrawPixels( GLsizei width, GLsizei height, /* these buffers must exist */ if (!_mesa_dest_buffer_exists(ctx, format)) { _mesa_error(ctx, GL_INVALID_OPERATION, - "glDrawPixels(missing deest buffer)"); + "glDrawPixels(missing dest buffer)"); goto end; } break; -- 2.30.2