From: Brian Paul Date: Thu, 7 Jul 2011 22:47:59 +0000 (-0600) Subject: glsl: use casts to silence warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7eb7d67d50fccb64248d1fc6f490895048d7d32e;p=mesa.git glsl: use casts to silence warning --- diff --git a/src/glsl/linker.cpp b/src/glsl/linker.cpp index 265da84e5a9..34b64837a46 100644 --- a/src/glsl/linker.cpp +++ b/src/glsl/linker.cpp @@ -1248,7 +1248,7 @@ assign_attribute_or_color_locations(gl_shader_program *prog, */ const int generic_base = (target_index == MESA_SHADER_VERTEX) - ? VERT_ATTRIB_GENERIC0 : FRAG_RESULT_DATA0; + ? (int) VERT_ATTRIB_GENERIC0 : (int) FRAG_RESULT_DATA0; const enum ir_variable_mode direction = (target_index == MESA_SHADER_VERTEX) ? ir_var_in : ir_var_out;