From: Brian Paul Date: Fri, 27 Oct 2017 00:30:51 +0000 (-0600) Subject: gallium/os: fix align_malloc() / os_malloc_aligned() comment mix-up X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7a718667f354935dc8470380f37ccea1477632d0;p=mesa.git gallium/os: fix align_malloc() / os_malloc_aligned() comment mix-up os_free_aligned() is the counterpart to os_malloc_aligned(). Trivial. --- 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)