From ca4e664f21d02235ebcbf387aa529468aded37cf Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 23 Nov 2011 08:36:14 -0700 Subject: [PATCH] mesa: fix incorrect error message in format_unpack.c --- src/mesa/main/format_unpack.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mesa/main/format_unpack.c b/src/mesa/main/format_unpack.c index 72a4175..080392f 100644 --- a/src/mesa/main/format_unpack.c +++ b/src/mesa/main/format_unpack.c @@ -1968,7 +1968,8 @@ _mesa_unpack_uint_24_8_depth_stencil_row(gl_format format, GLuint n, unpack_uint_24_8_depth_stencil_S8_Z24(src, dst, n); break; default: - _mesa_problem(NULL, "bad format %s in _mesa_unpack_ubyte_s_row", + _mesa_problem(NULL, + "bad format %s in _mesa_unpack_uint_24_8_depth_stencil_row", _mesa_get_format_name(format)); return; } -- 2.7.4