mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Android: Fix a compiler warning
This commit is contained in:
parent
8efadd14bb
commit
8524d4d815
1 changed files with 1 additions and 1 deletions
|
|
@ -478,7 +478,7 @@ private:
|
||||||
auto nextState = oboe::StreamState::Started;
|
auto nextState = oboe::StreamState::Started;
|
||||||
int64 timeoutNanos = 1000 * oboe::kNanosPerMillisecond;
|
int64 timeoutNanos = 1000 * oboe::kNanosPerMillisecond;
|
||||||
|
|
||||||
auto startResult = stream->requestStart();
|
[[maybe_unused]] auto startResult = stream->requestStart();
|
||||||
JUCE_OBOE_LOG ("Requested Oboe stream start with result: " + getOboeString (startResult));
|
JUCE_OBOE_LOG ("Requested Oboe stream start with result: " + getOboeString (startResult));
|
||||||
|
|
||||||
startResult = stream->waitForStateChange (expectedState, &nextState, timeoutNanos);
|
startResult = stream->waitForStateChange (expectedState, &nextState, timeoutNanos);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue