diff options
author | Brian Paul <[email protected]> | 2001-09-15 18:02:49 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-09-15 18:02:49 +0000 |
commit | fde5e2c5f182759aff78bdd12e6c928f3f13bbdc (patch) | |
tree | 950881e6db4ba7f6676f3ce7e4dcd996c419555f /src/mesa/main/colortab.c | |
parent | 1f20952a92aa8b8fe000222a9c71086df8fc63d8 (diff) |
more warning fixes (Karl Schultz)
Diffstat (limited to 'src/mesa/main/colortab.c')
-rw-r--r-- | src/mesa/main/colortab.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/colortab.c b/src/mesa/main/colortab.c index bb457382705..d9b796c1e74 100644 --- a/src/mesa/main/colortab.c +++ b/src/mesa/main/colortab.c @@ -1,4 +1,4 @@ -/* $Id: colortab.c,v 1.41 2001/07/14 17:53:04 brianp Exp $ */ +/* $Id: colortab.c,v 1.42 2001/09/15 18:02:49 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1009,10 +1009,10 @@ _mesa_GetColorTableParameterfv( GLenum target, GLenum pname, GLfloat *params ) switch (pname) { case GL_COLOR_TABLE_FORMAT: - *params = table->IntFormat; + *params = (GLfloat) table->IntFormat; break; case GL_COLOR_TABLE_WIDTH: - *params = table->Size; + *params = (GLfloat) table->Size; break; case GL_COLOR_TABLE_RED_SIZE: *params = table->RedSize; |