Skip to content

Commit 861e386

Browse files
committed
AudioOutput compile warning
1 parent 2d35f76 commit 861e386

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AudioTools/CoreAudio/AudioOutput.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,8 +387,8 @@ class OutputMixer : public Print {
387387
result = p_buffer->writeArray((T *)buffer_c, samples) * sizeof(T);
388388
} else {
389389
LOGW("Available Buffer %d too small %d: requested: %d -> increase the "
390-
"buffer size", idx,
391-
p_buffer->availableForWrite()*sizeof(T), bytes);
390+
"buffer size", (int) idx,
391+
(int) p_buffer->availableForWrite()*sizeof(T), (int)bytes);
392392
}
393393
return result;
394394
}

0 commit comments

Comments
 (0)