Commit 34092dbf authored by David Reid's avatar David Reid

Fix an unused parameter warning.

parent 14b98644
......@@ -17953,6 +17953,10 @@ MA_API void ma_dlclose(ma_log* pLog, ma_handle handle)
{
dlclose((void*)handle);
}
#else
{
(void)handle;
}
#endif
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment