mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-01 22:58:49 -04:00
pcm dump() routines update: use spaces to indent texts
This commit is contained in:
parent
1439c2be86
commit
bdfbbed5ca
10 changed files with 43 additions and 48 deletions
|
|
@ -675,20 +675,20 @@ static void snd_pcm_multi_dump(snd_pcm_t *pcm, snd_output_t *out)
|
|||
snd_pcm_multi_t *multi = pcm->private_data;
|
||||
unsigned int k;
|
||||
snd_output_printf(out, "Multi PCM\n");
|
||||
snd_output_printf(out, "\nChannel bindings:\n");
|
||||
snd_output_printf(out, " Channel bindings:\n");
|
||||
for (k = 0; k < multi->channels_count; ++k) {
|
||||
snd_pcm_multi_channel_t *c = &multi->channels[k];
|
||||
if (c->slave_idx < 0)
|
||||
continue;
|
||||
snd_output_printf(out, "%d: slave %d, channel %d\n",
|
||||
snd_output_printf(out, " %d: slave %d, channel %d\n",
|
||||
k, c->slave_idx, c->slave_channel);
|
||||
}
|
||||
if (pcm->setup) {
|
||||
snd_output_printf(out, "\nIts setup is:\n");
|
||||
snd_output_printf(out, "Its setup is:\n");
|
||||
snd_pcm_dump_setup(pcm, out);
|
||||
}
|
||||
for (k = 0; k < multi->slaves_count; ++k) {
|
||||
snd_output_printf(out, "\nSlave #%d: ", k);
|
||||
snd_output_printf(out, "Slave #%d: ", k);
|
||||
snd_pcm_dump(multi->slaves[k].pcm, out);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue