Skip to content

Commit bc0d5b3

Browse files
committed
forgot to fix format type in one place
1 parent c47d45d commit bc0d5b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/sound_level_meter/sound_level_meter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void SoundLevelMeter::task(void *param) {
117117
auto sr = this_->get_sample_rate();
118118
if (process_count >= sr * (this_->update_interval_ / 1000.f)) {
119119
auto t = uint32_t(float(process_time) / process_count * (sr / 1000.f));
120-
ESP_LOGD(TAG, "Processing time per 1s of audio data (%lu samples): %u ms", sr, t);
120+
ESP_LOGD(TAG, "Processing time per 1s of audio data (%lu samples): %lu ms", sr, t);
121121
process_time = process_count = 0;
122122
}
123123
}

0 commit comments

Comments
 (0)