Remove unnecessary cast.

This commit is contained in:
David Reid
2022-08-24 09:55:43 +10:00
parent 5a5f4f0706
commit b39fc571e7
+1 -1
View File
@@ -73,7 +73,7 @@ void data_callback(ma_device* pDevice, void* pOutput, const void* pInput, ma_uin
return;
}
ma_decoder_read_pcm_frames(pDecoder, pOutput, (ma_uint64)frameCount, NULL);
ma_decoder_read_pcm_frames(pDecoder, pOutput, frameCount, NULL);
(void)pInput;
}