mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-18 08:56:45 -05:00
context: fix indentation
This commit is contained in:
parent
98d44d9757
commit
353efbd790
1 changed files with 4 additions and 2 deletions
|
|
@ -807,7 +807,8 @@ static inline int run_nodes(struct pw_context *context, struct pw_impl_node *nod
|
||||||
spa_list_for_each(l, &p->links, input_link) {
|
spa_list_for_each(l, &p->links, input_link) {
|
||||||
t = l->output->node;
|
t = l->output->node;
|
||||||
|
|
||||||
if (!t->active || !l->prepared || (!t->driving && SPA_FLAG_IS_SET(t->checked, 1u<<direction)))
|
if (!t->active || !l->prepared ||
|
||||||
|
(!t->driving && SPA_FLAG_IS_SET(t->checked, 1u<<direction)))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
pw_log_debug(" peer %p: '%s'", t, t->name);
|
pw_log_debug(" peer %p: '%s'", t, t->name);
|
||||||
|
|
@ -820,7 +821,8 @@ static inline int run_nodes(struct pw_context *context, struct pw_impl_node *nod
|
||||||
spa_list_for_each(l, &p->links, output_link) {
|
spa_list_for_each(l, &p->links, output_link) {
|
||||||
t = l->input->node;
|
t = l->input->node;
|
||||||
|
|
||||||
if (!t->active || !l->prepared || (!t->driving && SPA_FLAG_IS_SET(t->checked, 1u<<direction)))
|
if (!t->active || !l->prepared ||
|
||||||
|
(!t->driving && SPA_FLAG_IS_SET(t->checked, 1u<<direction)))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
pw_log_debug(" peer %p: '%s'", t, t->name);
|
pw_log_debug(" peer %p: '%s'", t, t->name);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue