pipe: whitespace and log output cleanup

This commit is contained in:
Peter Meerwald 2012-05-24 17:52:55 +02:00 committed by Arun Raghavan
parent 9be176f403
commit c87fd823ea
2 changed files with 7 additions and 7 deletions

View file

@ -220,14 +220,14 @@ int pa__init(pa_module*m) {
pa_assert(m);
if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
pa_log("failed to parse module arguments.");
pa_log("Failed to parse module arguments.");
goto fail;
}
ss = m->core->default_sample_spec;
map = m->core->default_channel_map;
if (pa_modargs_get_sample_spec_and_channel_map(ma, &ss, &map, PA_CHANNEL_MAP_DEFAULT) < 0) {
pa_log("invalid sample format specification or channel map");
pa_log("Invalid sample format specification or channel map");
goto fail;
}