From: Vinson Lee Date: Mon, 24 Aug 2009 17:43:02 +0000 (-0600) Subject: glsl: Silence gcc uninitialized variable warning. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a24e5011171d71ae88ef0a43b4625ea8d37a917;p=mesa.git glsl: Silence gcc uninitialized variable warning. --- diff --git a/src/mesa/shader/slang/slang_builtin.c b/src/mesa/shader/slang/slang_builtin.c index ad2e306c19e..bef0f856534 100644 --- a/src/mesa/shader/slang/slang_builtin.c +++ b/src/mesa/shader/slang/slang_builtin.c @@ -436,7 +436,7 @@ emit_statevars(const char *name, int array_len, struct gl_program_parameter_list *paramList) { if (type->type == SLANG_SPEC_ARRAY) { - GLint i, pos; + GLint i, pos = -1; assert(array_len > 0); if (strcmp(name, "gl_ClipPlane") == 0) { tokens[0] = STATE_CLIPPLANE;