From: Brian Paul Date: Wed, 23 Nov 2011 15:36:14 +0000 (-0700) Subject: mesa: fix incorrect error message in format_unpack.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ca4e664f21d02235ebcbf387aa529468aded37cf;p=mesa.git mesa: fix incorrect error message in format_unpack.c --- diff --git a/src/mesa/main/format_unpack.c b/src/mesa/main/format_unpack.c index 72a4175aa86..080392f2bca 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; }