From fe4290200942b1103cdc1a238876143b61b731f0 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 22 Jul 2015 08:04:49 -0600 Subject: [PATCH] mesa: fix typo s/glGetTextImage/glGetTexImage/ Trivial. --- src/mesa/main/texgetimage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index 8539afcf47b..59ec091257e 100644 --- a/src/mesa/main/texgetimage.c +++ b/src/mesa/main/texgetimage.c @@ -1382,7 +1382,7 @@ _mesa_GetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels ) { GET_CURRENT_CONTEXT(ctx); - static const char *caller = "glGetTextImage"; + static const char *caller = "glGetTexImage"; GLsizei width, height, depth; struct gl_texture_object *texObj; -- 2.30.2