mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-07 13:30:09 -05:00
Drop double semicolons
This commit is contained in:
parent
b1610d37fe
commit
71c6a175c4
10 changed files with 14 additions and 14 deletions
|
|
@ -1186,7 +1186,7 @@ static int setup_output_port(struct graph *graph, struct port *port)
|
|||
struct ladspa_descriptor *desc = port->node->desc;
|
||||
const LADSPA_Descriptor *d = desc->desc;
|
||||
struct link *link;
|
||||
uint32_t i, n_hndl = port->node->n_hndl;;
|
||||
uint32_t i, n_hndl = port->node->n_hndl;
|
||||
|
||||
spa_list_for_each(link, &port->link_list, output_link) {
|
||||
for (i = 0; i < n_hndl; i++) {
|
||||
|
|
@ -1303,7 +1303,7 @@ static int setup_graph(struct graph *graph, struct spa_json *inputs, struct spa_
|
|||
}
|
||||
/* collect all control ports on the graph */
|
||||
for (j = 0; j < desc->n_control; j++) {
|
||||
graph->control_port[graph->n_control] = &node->control_port[j];;
|
||||
graph->control_port[graph->n_control] = &node->control_port[j];
|
||||
graph->n_control++;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4852,7 +4852,7 @@ static int do_suspend(struct client *client, uint32_t command, uint32_t tag, str
|
|||
struct pw_manager_object *o;
|
||||
const char *name;
|
||||
int res;
|
||||
uint32_t id, cmd;;
|
||||
uint32_t id, cmd;
|
||||
bool sink = command == COMMAND_SUSPEND_SINK, suspend;
|
||||
|
||||
if ((res = message_get(m,
|
||||
|
|
|
|||
|
|
@ -463,7 +463,7 @@ static int start_avahi(struct impl *impl)
|
|||
loop = pw_context_get_main_loop(impl->context);
|
||||
impl->avahi_poll = pw_avahi_poll_new(loop);
|
||||
|
||||
return start_client(impl);;
|
||||
return start_client(impl);
|
||||
}
|
||||
|
||||
SPA_EXPORT
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue