diff options
author | Brian Paul <[email protected]> | 2017-10-26 18:30:51 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-10-27 09:54:26 -0600 |
commit | 7a718667f354935dc8470380f37ccea1477632d0 (patch) | |
tree | 169ee85fd0a1f32992f13bc474d451f649b556ad /src/gallium/auxiliary/os | |
parent | fd011376cb3d7713297e057eafbd1d0ef1df3667 (diff) |
gallium/os: fix align_malloc() / os_malloc_aligned() comment mix-up
os_free_aligned() is the counterpart to os_malloc_aligned().
Trivial.
Diffstat (limited to 'src/gallium/auxiliary/os')
-rw-r--r-- | src/gallium/auxiliary/os/os_memory_aligned.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/os/os_memory_aligned.h b/src/gallium/auxiliary/os/os_memory_aligned.h index f7d0e3652ed..df398a32bfd 100644 --- a/src/gallium/auxiliary/os/os_memory_aligned.h +++ b/src/gallium/auxiliary/os/os_memory_aligned.h @@ -85,7 +85,7 @@ os_malloc_aligned(size_t size, size_t alignment) /** - * Free memory returned by align_malloc(). + * Free memory returned by os_malloc_aligned(). */ static inline void os_free_aligned(void *ptr) |