aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/hud
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-04-03 13:33:38 -0600
committerBrian Paul <[email protected]>2013-04-04 08:50:15 -0600
commita408ea96920984ad2c5bf81f799cbb583f264105 (patch)
tree0e9529548616f61df3c6114cd9180f9046c9c38c /src/gallium/auxiliary/hud
parent92769612233dade9b7d45d5058dc86efc18d7710 (diff)
gallium/hud: replace malloc w/ MALLOC
To match the FREE() called used later. Fixes things on Windows. Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/hud')
-rw-r--r--src/gallium/auxiliary/hud/hud_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/hud/hud_context.c b/src/gallium/auxiliary/hud/hud_context.c
index 5511f8e1011..b417f5d3726 100644
--- a/src/gallium/auxiliary/hud/hud_context.c
+++ b/src/gallium/auxiliary/hud/hud_context.c
@@ -621,7 +621,7 @@ hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr)
}
assert(pane->num_graphs < Elements(colors));
- gr->vertices = malloc(pane->max_num_vertices * sizeof(float) * 2);
+ gr->vertices = MALLOC(pane->max_num_vertices * sizeof(float) * 2);
gr->color[0] = colors[pane->num_graphs][0];
gr->color[1] = colors[pane->num_graphs][1];
gr->color[2] = colors[pane->num_graphs][2];