From: Brian Paul Date: Wed, 29 Oct 2008 23:02:30 +0000 (-0600) Subject: gallium: fix copy&paste bug X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7d7f0f170692962cf57d6893428f3a18f590c060;p=mesa.git gallium: fix copy&paste bug --- diff --git a/src/gallium/auxiliary/rtasm/rtasm_execmem.c b/src/gallium/auxiliary/rtasm/rtasm_execmem.c index bb3b1a4c25f..f16191cb619 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_execmem.c +++ b/src/gallium/auxiliary/rtasm/rtasm_execmem.c @@ -83,7 +83,7 @@ rtasm_exec_malloc(size_t size) if (exec_heap) { size = (size + 31) & ~31; /* next multiple of 32 bytes */ - block = u_mmAllocMem( exec_heap, size, 5, 0 ); /* 5 -> 32-byte alignment */ + block = mmAllocMem( exec_heap, size, 5, 0 ); /* 5 -> 32-byte alignment */ } if (block)