From e39a334f1aadefdea619d14adb589a5d641bf3c1 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 29 Aug 2003 14:45:15 +0000 Subject: fix minor warnings with casts --- src/mesa/main/nvvertparse.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mesa/main/nvvertparse.c') diff --git a/src/mesa/main/nvvertparse.c b/src/mesa/main/nvvertparse.c index 4078fd864f..fd99a261f0 100644 --- a/src/mesa/main/nvvertparse.c +++ b/src/mesa/main/nvvertparse.c @@ -1034,10 +1034,10 @@ Parse_InstructionSequence(struct parse_state *parseState, struct vp_instruction *inst = program + parseState->numInst; /* Initialize the instruction */ - inst->SrcReg[0].File = -1; - inst->SrcReg[1].File = -1; - inst->SrcReg[2].File = -1; - inst->DstReg.File = -1; + inst->SrcReg[0].File = (enum register_file) -1; + inst->SrcReg[1].File = (enum register_file) -1; + inst->SrcReg[2].File = (enum register_file) -1; + inst->DstReg.File = (enum register_file) -1; if (Parse_String(parseState, "MOV")) { if (!Parse_UnaryOpInstruction(parseState, inst, VP_OPCODE_MOV)) -- cgit v1.2.3