summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-10-30 19:58:58 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-10-30 19:58:58 +0000
commit36b518a7ca98e49d95c3fe54544700004716cdef (patch)
tree81565875a07a8c1e8ace26c27aa5639b43e30ef1 /src
parentf16a66e97dd2586179ca8f128bb9c6c181547b00 (diff)
s/sprintf/_mesa_sprintf/
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/teximage.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
index f7f428eb4e4..a3e7fe8cea0 100644
--- a/src/mesa/main/teximage.c
+++ b/src/mesa/main/teximage.c
@@ -1,4 +1,4 @@
-/* $Id: teximage.c,v 1.123 2002/10/24 23:57:21 brianp Exp $ */
+/* $Id: teximage.c,v 1.124 2002/10/30 19:58:58 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -986,7 +986,7 @@ texture_error_check( GLcontext *ctx, GLenum target,
(type != GL_UNSIGNED_SHORT_8_8_MESA &&
type != GL_UNSIGNED_SHORT_8_8_REV_MESA)) {
char message[100];
- sprintf(message,
+ _mesa_sprintf(message,
"glTexImage%d(format/type/internalFormat YCBCR mismatch",
dimensions);
_mesa_error(ctx, GL_INVALID_ENUM, message);
@@ -1003,7 +1003,7 @@ texture_error_check( GLcontext *ctx, GLenum target,
if (border != 0) {
if (!isProxy) {
char message[100];
- sprintf(message,
+ _mesa_sprintf(message,
"glTexImage%d(format=GL_YCBCR_MESA and border=%d)",
dimensions, border);
_mesa_error(ctx, GL_INVALID_VALUE, message);