Update test_0 for changes to the log callback.

This commit is contained in:
David Reid
2018-12-30 11:02:20 +10:00
parent c1c422d3ea
commit 1acb96ed22
+2 -1
View File
@@ -41,10 +41,11 @@ mal_backend g_Backends[] = {
mal_backend_null mal_backend_null
}; };
void on_log(mal_context* pContext, mal_device* pDevice, const char* message) void on_log(mal_context* pContext, mal_device* pDevice, mal_uint32 logLevel, const char* message)
{ {
(void)pContext; (void)pContext;
(void)pDevice; (void)pDevice;
(void)logLevel;
printf("%s\n", message); printf("%s\n", message);
} }