Committing in .
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>
Wed, 27 Aug 2003 11:12:35 +0000 (11:12 +0000)
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>
Wed, 27 Aug 2003 11:12:35 +0000 (11:12 +0000)
 Added a type cast to silence the OpenVMS DECC compiler

 Modified Files:
  Mesa-newtree/src/mesa/swrast/s_nvfragprog.c
 ----------------------------------------------------------------------

src/mesa/swrast/s_nvfragprog.c

index 8bb6ccf..cb3ca86 100644 (file)
@@ -477,7 +477,7 @@ init_machine_deriv( GLcontext *ctx,
    _mesa_memcpy(dMachine, machine, sizeof(struct fp_machine));
 
    /* Clear temporary registers */
-   _mesa_bzero(machine->Temporaries,
+   _mesa_bzero( (void*) machine->Temporaries,
                MAX_NV_FRAGMENT_PROGRAM_TEMPS * 4 * sizeof(GLfloat));
 
    /* Add derivatives */