From e3af234720ffbf6438791ee749825b3a17c25118 Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 28 Feb 2024 08:15:13 +1000 Subject: [PATCH] Silence a warning in the node graph example. --- examples/node_graph.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/node_graph.c b/examples/node_graph.c index 83aa8945..dd1b9374 100644 --- a/examples/node_graph.c +++ b/examples/node_graph.c @@ -88,6 +88,7 @@ void data_callback(ma_device* pDevice, void* pOutput, const void* pInput, ma_uin ma_node_graph_read_pcm_frames(&g_nodeGraph, pOutput, frameCount, NULL); (void)pInput; /* Unused. */ + (void)pDevice; /* Unused. */ } int main(int argc, char** argv)