diff options
author | Brian Paul <[email protected]> | 2000-03-01 23:28:20 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-03-01 23:28:20 +0000 |
commit | 65d54604c387dca986c876e811362d8e8517dcac (patch) | |
tree | fe14e997675a087865866660fe962ac57381895d /src/mesa | |
parent | 3bc58af79d88d1822a2039af32a0a9604aa6710d (diff) |
inserted static const in make_null_texture()
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/teximage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index f2b40b8c4a6..035e88db0b5 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -1,4 +1,4 @@ -/* $Id: teximage.c,v 1.17 2000/02/21 16:34:21 brianp Exp $ */ +/* $Id: teximage.c,v 1.18 2000/03/01 23:28:20 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -585,7 +585,7 @@ make_null_texture( GLcontext *ctx, GLenum internalFormat, * interesting instead of leaving it indeterminate. */ if (texImage->Data) { - char message[8][32] = { + static const char message[8][32] = { " X X XXXXX XXX X ", " XX XX X X X X X ", " X X X X X X X ", |