Mesa (gallium-0.1): gallium: fix copy&paste bug

Brian Paul brianp at kemper.freedesktop.org
Wed Oct 29 23:03:08 UTC 2008


Module: Mesa
Branch: gallium-0.1
Commit: 7d7f0f170692962cf57d6893428f3a18f590c060
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7d7f0f170692962cf57d6893428f3a18f590c060

Author: Brian Paul <brian.paul at tungstengraphics.com>
Date:   Wed Oct 29 17:02:30 2008 -0600

gallium: fix copy&paste bug

---

 src/gallium/auxiliary/rtasm/rtasm_execmem.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/auxiliary/rtasm/rtasm_execmem.c b/src/gallium/auxiliary/rtasm/rtasm_execmem.c
index bb3b1a4..f16191c 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)




More information about the mesa-commit mailing list