mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
gallium: fix copy&paste bug
This commit is contained in:
parent
8160cb4935
commit
7d7f0f1706
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue