From f9a8ab0dcd56bfce7d0d27b3121f1cd4705e9e59 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sun, 18 Mar 2018 16:02:45 +1000 Subject: [PATCH] Fix a warning. --- mini_al.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mini_al.h b/mini_al.h index fc852c7d..6e248d45 100644 --- a/mini_al.h +++ b/mini_al.h @@ -13635,6 +13635,8 @@ mal_result mal_context_uninit_backend_apis__nix(mal_context* pContext) { #if defined(MAL_USE_RUNTIME_LINKING_FOR_PTHREAD) && !defined(MAL_NO_RUNTIME_LINKING) mal_dlclose(pContext->posix.pthreadSO); +#else + (void)pContext; #endif return MAL_SUCCESS;