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 08033fa commit cb1caf5Copy full SHA for cb1caf5
src/AudioTools/CoreAudio/AudioOutput.h
@@ -378,7 +378,7 @@ class OutputMixer : public Print {
378
379
/// Write the data for an individual stream idx which will be mixed together
380
size_t write(int idx, const uint8_t *buffer_c, size_t bytes) {
381
- LOGD("write idx %d: %d", idx, bytes);
+ LOGD("write idx %d: %d", idx, (int)bytes);
382
size_t result = 0;
383
BaseBuffer<T> *p_buffer = idx < output_count ? buffers[idx] : nullptr;
384
assert(p_buffer != nullptr);
0 commit comments