From 7a09385782cca72e7bdee2cd82987546db38d377 Mon Sep 17 00:00:00 2001 From: David Reid Date: Thu, 20 Oct 2022 10:26:56 +1000 Subject: [PATCH] Rename a function for clarity. --- miniaudio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miniaudio.h b/miniaudio.h index 1deb03b4..0610b24d 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -11881,7 +11881,7 @@ Standard Library Stuff #endif #endif -static MA_INLINE void ma_zero_memory(void* p, size_t sz) +static MA_INLINE void ma_zero_memory_default(void* p, size_t sz) { #ifdef MA_WIN32 ZeroMemory(p, sz); @@ -11893,7 +11893,7 @@ static MA_INLINE void ma_zero_memory(void* p, size_t sz) } #ifndef MA_ZERO_MEMORY -#define MA_ZERO_MEMORY(p, sz) ma_zero_memory((p), (sz)) +#define MA_ZERO_MEMORY(p, sz) ma_zero_memory_default((p), (sz)) #endif #ifndef MA_COPY_MEMORY