Skip to content

Commit cb1caf5

Browse files
committed
AudioOutput compile warnings
1 parent 08033fa commit cb1caf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AudioTools/CoreAudio/AudioOutput.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ class OutputMixer : public Print {
378378

379379
/// Write the data for an individual stream idx which will be mixed together
380380
size_t write(int idx, const uint8_t *buffer_c, size_t bytes) {
381-
LOGD("write idx %d: %d", idx, bytes);
381+
LOGD("write idx %d: %d", idx, (int)bytes);
382382
size_t result = 0;
383383
BaseBuffer<T> *p_buffer = idx < output_count ? buffers[idx] : nullptr;
384384
assert(p_buffer != nullptr);

0 commit comments

Comments
 (0)