Skip to content

Commit 87c2919

Browse files
committed
AudioOutput comile warnings
1 parent 5c9ace1 commit 87c2919

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
@@ -443,7 +443,7 @@ class OutputMixer : public Print {
443443
}
444444

445445
// write output
446-
LOGD("write to final out: %d", (int) samples * sizeof(T));
446+
LOGD("write to final out: %d", static_cast<int>(samples * sizeof(T)));
447447
p_final_output->write((uint8_t *)output.data(), samples * sizeof(T));
448448
}
449449
stream_idx = 0;

0 commit comments

Comments
 (0)