gallium: fix copy&paste bug
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 29 Oct 2008 23:02:30 +0000 (17:02 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 29 Oct 2008 23:02:30 +0000 (17:02 -0600)
src/gallium/auxiliary/rtasm/rtasm_execmem.c

index bb3b1a4..f16191c 100644 (file)
@@ -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)