add some casts
authorBrian Paul <brian.paul@tungstengraphics.com>
Sun, 19 Jan 2003 15:27:37 +0000 (15:27 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Sun, 19 Jan 2003 15:27:37 +0000 (15:27 +0000)
src/mesa/main/imports.c
src/mesa/main/nvfragparse.c

index bb836dd..9816936 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: imports.c,v 1.29 2003/01/14 03:05:38 brianp Exp $ */
+/* $Id: imports.c,v 1.30 2003/01/19 15:27:38 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -360,7 +360,7 @@ char *
 _mesa_strdup( const char *s )
 {
    int l = _mesa_strlen(s);
-   char *s2 = _mesa_malloc(l + 1);
+   char *s2 = (char *) _mesa_malloc(l + 1);
    if (s2)
       _mesa_strcpy(s2, s);
    return s2;
index c4035f0..641afa4 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: nvfragparse.c,v 1.1 2003/01/14 04:55:46 brianp Exp $ */
+/* $Id: nvfragparse.c,v 1.2 2003/01/19 15:27:37 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -191,7 +191,7 @@ MatchInstruction(const char *token)
          return result;
       }
    }
-   result.opcode = -1;
+   result.opcode = (enum fp_opcode) -1;
    return result;
 }