From b39fc571e7fd93a9da7d565599a9252eb7a4aaf2 Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 24 Aug 2022 09:55:43 +1000 Subject: [PATCH] Remove unnecessary cast. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 15ec2264..c5090fa8 100644 --- a/README.md +++ b/README.md @@ -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; }