diff options
Diffstat (limited to 'src/mesa/pipe/draw/draw_vb.c')
-rw-r--r-- | src/mesa/pipe/draw/draw_vb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/pipe/draw/draw_vb.c b/src/mesa/pipe/draw/draw_vb.c index ef32f02ec10..c0600314d6f 100644 --- a/src/mesa/pipe/draw/draw_vb.c +++ b/src/mesa/pipe/draw/draw_vb.c @@ -795,7 +795,7 @@ void draw_alloc_tmps( struct draw_stage *stage, GLuint nr ) stage->nr_tmps = nr; if (nr) { - GLubyte *store = MALLOC(MAX_VERTEX_SIZE * nr); + GLubyte *store = (GLubyte *) malloc(MAX_VERTEX_SIZE * nr); GLuint i; stage->tmp = MALLOC(sizeof(struct vertex_header *) * nr); @@ -808,7 +808,7 @@ void draw_alloc_tmps( struct draw_stage *stage, GLuint nr ) void draw_free_tmps( struct draw_stage *stage ) { if (stage->tmp) { - FREE(stage->tmp[0]); - FREE(stage->tmp); + free(stage->tmp[0]); + free(stage->tmp); } } |