From 9d336be542adc91480d6f4e43bc275aa332393a0 Mon Sep 17 00:00:00 2001 From: David Reid Date: Thu, 27 Oct 2016 00:17:37 +1000 Subject: [PATCH] Fix compilation warning. --- mini_al.h | 1 + 1 file changed, 1 insertion(+) diff --git a/mini_al.h b/mini_al.h index 804902e3..4a6df92d 100644 --- a/mini_al.h +++ b/mini_al.h @@ -1371,6 +1371,7 @@ static mal_result mal_device__start_backend__null(mal_device* pDevice) static mal_result mal_device__stop_backend__null(mal_device* pDevice) { mal_assert(pDevice != NULL); + (void)pDevice; return MAL_SUCCESS; }