diff options
author | Brian Paul <[email protected]> | 2008-10-29 17:02:30 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-10-29 17:02:30 -0600 |
commit | 7d7f0f170692962cf57d6893428f3a18f590c060 (patch) | |
tree | 6ed5a1ac04e7ec9a559f3598ea5d1063de6735b9 /src | |
parent | 8160cb4935151a12588acbe546f00ce8d77bda91 (diff) |
gallium: fix copy&paste bug
Diffstat (limited to 'src')
-rw-r--r-- | 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 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) |