rescue-streams: Fix a couple of typos

This commit is contained in:
Arun Raghavan 2015-06-10 16:52:38 +05:30
parent 21b912dd2b
commit 1beec62c2d

View file

@ -304,12 +304,12 @@ static pa_hook_result_t source_output_move_fail_hook_callback(pa_core *c, pa_sou
return PA_HOOK_OK;
if (pa_source_output_finish_move(i, target, false) < 0) {
pa_log_info("Failed to move source input %u \"%s\" to %s.", i->index,
pa_log_info("Failed to move source output %u \"%s\" to %s.", i->index,
pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_APPLICATION_NAME)), target->name);
return PA_HOOK_OK;
} else {
pa_log_info("Successfully moved source input %u \"%s\" to %s.", i->index,
pa_log_info("Successfully moved output input %u \"%s\" to %s.", i->index,
pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_APPLICATION_NAME)), target->name);
return PA_HOOK_STOP;
}