summaryrefslogtreecommitdiff
path: root/src/mesa/shader/arbvertparse.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-01-19 14:44:41 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-01-19 14:44:41 +0000
commit4ef0e046ec66d1f54e24d32c7c1a857ba14bdaf7 (patch)
treef26e2f6e83f004831c557d1c81f62c6a9c9b5cd7 /src/mesa/shader/arbvertparse.c
parent2aa34ea98430047e28b4ac47d09421d53c4b77a2 (diff)
minor formatting fix
Diffstat (limited to 'src/mesa/shader/arbvertparse.c')
-rw-r--r--src/mesa/shader/arbvertparse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/arbvertparse.c b/src/mesa/shader/arbvertparse.c
index 33086c2f72..fd0666b326 100644
--- a/src/mesa/shader/arbvertparse.c
+++ b/src/mesa/shader/arbvertparse.c
@@ -192,8 +192,8 @@ _mesa_parse_arb_vertex_program(GLcontext * ctx, GLenum target,
/* Parse error. Allocate a dummy program and return */
if (retval)
{
- program->Instructions = (struct vp_instruction *) _mesa_malloc (
- sizeof(struct vp_instruction) );
+ program->Instructions = (struct vp_instruction *)
+ _mesa_malloc ( sizeof(struct vp_instruction) );
program->Instructions[0].Opcode = VP_OPCODE_END;
return;
}