From: Brian Paul Date: Sat, 19 Nov 2005 23:29:18 +0000 (+0000) Subject: remove incorrect cast X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=55194df0350fe8bb1e684c1f9318b9a7e1a67c86;p=mesa.git remove incorrect cast --- diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 7d2c6947bb6..d847a81a59b 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -3914,7 +3914,7 @@ _mesa_parse_arb_program(GLcontext *ctx, GLenum target, } /* Set program_target register value */ - if (set_reg8 (ctx, arbprogram_syn_id, (byte *) "program_target", + if (set_reg8 (ctx, arbprogram_syn_id, "program_target", program->Base.Target == GL_FRAGMENT_PROGRAM_ARB ? 0x10 : 0x20)) { grammar_destroy (arbprogram_syn_id); return GL_FALSE;