We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d35f76 commit 861e386Copy full SHA for 861e386
src/AudioTools/CoreAudio/AudioOutput.h
@@ -387,8 +387,8 @@ class OutputMixer : public Print {
387
result = p_buffer->writeArray((T *)buffer_c, samples) * sizeof(T);
388
} else {
389
LOGW("Available Buffer %d too small %d: requested: %d -> increase the "
390
- "buffer size", idx,
391
- p_buffer->availableForWrite()*sizeof(T), bytes);
+ "buffer size", (int) idx,
+ (int) p_buffer->availableForWrite()*sizeof(T), (int)bytes);
392
}
393
return result;
394
0 commit comments