summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-08-30 18:23:51 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-08-30 18:23:51 +0000
commitdc1e96acdc89ea6412b1ffaa6cc0f53ff2d37056 (patch)
tree16d740bb44f03409593333d3628362eb30cd49cb /src
parent0eb94349b625ea283fabf428729279a6f5000545 (diff)
removed bogus gl_problem() call
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/teximage.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
index 6c84949d253..c89a3eadce9 100644
--- a/src/mesa/main/teximage.c
+++ b/src/mesa/main/teximage.c
@@ -1,4 +1,4 @@
-/* $Id: teximage.c,v 1.39.4.2 2000/08/29 23:10:23 brianp Exp $ */
+/* $Id: teximage.c,v 1.39.4.3 2000/08/30 18:23:51 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -1398,7 +1398,8 @@ get_specific_compressed_tex_format(GLcontext *ctx,
internalFormat = GL_RGBA;
break;
default:
- gl_problem(ctx, "unexpected format in get_specific_compressed_tex_format");
+ /* silence compiler warning */
+ ;
}
return internalFormat;
}