gallium/os: fix align_malloc() / os_malloc_aligned() comment mix-up

os_free_aligned() is the counterpart to os_malloc_aligned().
Trivial.
This commit is contained in:
Brian Paul 2017-10-26 18:30:51 -06:00
parent fd011376cb
commit 7a718667f3

View File

@ -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)