alsa-source: Fix log message

The log message when updating the source sample rate wrongly mentions
"Sink" instead of "Source". This was probably a copy and paste error.
This commit is contained in:
João Paulo Rechi Vita 2013-04-16 19:26:27 -03:00 committed by David Henningsson
parent f771bbcfa9
commit 7a66dcda72

View file

@ -1424,7 +1424,7 @@ static pa_bool_t source_update_rate_cb(pa_source *s, uint32_t rate)
} }
if (!supported) { if (!supported) {
pa_log_info("Sink does not support sample rate of %d Hz", rate); pa_log_info("Source does not support sample rate of %d Hz", rate);
return FALSE; return FALSE;
} }