Skip to content

Commit

Permalink
Fix printf format
Browse files Browse the repository at this point in the history
  • Loading branch information
padenot committed Sep 11, 2020
1 parent d01d6f1 commit f39ce8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cubeb_resampler_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ class cubeb_resampler_speex_one_way : public processor {
resampling_out_buffer.data(), &out_len);

if (out_len < output_frame_count) {
LOGV("underrun during resampling: got %u frames, expected %u", out_len, output_frame_count);
LOGV("underrun during resampling: got %u frames, expected %zu", (unsigned)out_len, output_frame_count);
// silence the rightmost part
T* data = resampling_out_buffer.data();
for (uint32_t i = frames_to_samples(out_len); i < frames_to_samples(output_frame_count); i++) {
Expand Down

0 comments on commit f39ce8a

Please sign in to comment.