mesa: fix incorrect error string

This commit is contained in:
Brian Paul
2011-06-23 17:08:58 -06:00
parent 9c5d15e929
commit ca7510bbf9

View File

@@ -3274,7 +3274,7 @@ compressedteximage(struct gl_context *ctx, GLuint dims,
border, imageSize, &reason);
if (error) {
_mesa_error(ctx, error, "glTexImage2D(%s)", reason);
_mesa_error(ctx, error, "glCompressedTexImage%uD(%s)", dims, reason);
return;
}