mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed a warning in recent commit
This commit is contained in:
parent
40994fcdab
commit
d892109298
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ bool BufferingAudioSource::waitForNextAudioBlockReady (const AudioSourceChannelI
|
|||
return true;
|
||||
}
|
||||
|
||||
if (! bufferReadyEvent.wait (endTime - now))
|
||||
if (! bufferReadyEvent.wait (static_cast<int> (endTime - now)))
|
||||
return false;
|
||||
|
||||
now = Time::getMillisecondCounter();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue