summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-10-14 17:22:06 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-10-14 17:22:06 -0600
commit6c017c2c3c3649650cd0dc89a3b4946eab0e5a8c (patch)
tree9ef13e12a128da2814571c69e3328c401bfa47a9
parente42a394ed5ca00a9d0a51a0c26d4fef9959ba43c (diff)
cell: replace FREE() with align_free()
-rw-r--r--src/gallium/drivers/cell/ppu/cell_texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_texture.c b/src/gallium/drivers/cell/ppu/cell_texture.c
index 4c92ef154f..230e192573 100644
--- a/src/gallium/drivers/cell/ppu/cell_texture.c
+++ b/src/gallium/drivers/cell/ppu/cell_texture.c
@@ -147,7 +147,7 @@ cell_texture_release(struct pipe_screen *screen,
for (i = 0; i < CELL_MAX_TEXTURE_LEVELS; i++) {
if (ct->tiled_data[i]) {
- FREE(ct->tiled_data[i]);
+ align_free(ct->tiled_data[i]);
}
}