mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
silence warning with a cast
This commit is contained in:
parent
25060c1f29
commit
736d10c274
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: nvfragparse.c,v 1.6 2003/02/23 04:09:21 brianp Exp $ */
|
||||
/* $Id: nvfragparse.c,v 1.7 2003/02/23 04:23:43 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
|
|
@ -1431,7 +1431,7 @@ _mesa_parse_nv_fragment_program(GLcontext *ctx, GLenum dstTarget,
|
|||
parseState.pos, &line, &column);
|
||||
_mesa_debug(ctx, "Parse error on line %d, column %d:%s\n",
|
||||
line, column, lineStr);
|
||||
_mesa_free(lineStr);
|
||||
_mesa_free((void *) lineStr);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue