summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/format_unpack.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2011-11-23 08:36:14 -0700
committerBrian Paul <[email protected]>2011-11-23 08:40:46 -0700
commitca4e664f21d02235ebcbf387aa529468aded37cf (patch)
tree52df56263ce42d10fe8b312edebf9ed42f1801d3 /src/mesa/main/format_unpack.c
parent8265bb7fb87184104e3c97dbf480170fb69ff8ad (diff)
mesa: fix incorrect error message in format_unpack.c
Diffstat (limited to 'src/mesa/main/format_unpack.c')
-rw-r--r--src/mesa/main/format_unpack.c3
1 files changed, 2 insertions, 1 deletions
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;
}