From 8701e5f702a0b15d44395268e2422c196d8f4efd Mon Sep 17 00:00:00 2001 From: Michal Krol Date: Fri, 19 Sep 2008 19:11:37 +0200 Subject: [PATCH] mesa: Fix compiler error. --- src/mesa/shader/arbprogparse.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 5e81477592a..466ae48bef3 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -2604,11 +2604,13 @@ parse_src_reg (GLcontext * ctx, const GLubyte ** inst, } if (*File == PROGRAM_STATE_VAR) { + enum register_file file; + /* If we're referencing the Program->Parameters[] array, check if the * parameter is really a constant/literal. If so, set File to CONSTANT. */ assert(*Index < Program->Base.Parameters->NumParameters); - enum register_file file = Program->Base.Parameters->Parameters[*Index].Type; + file = Program->Base.Parameters->Parameters[*Index].Type; if (file == PROGRAM_CONSTANT) *File = PROGRAM_CONSTANT; } -- 2.30.2