Skip to content
Snippets Groups Projects
Commit 92dc9d5c authored by Julian Bouzas's avatar Julian Bouzas
Browse files

Fix no return statement warnings

parent 220b95fb
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,8 @@ simple_endpoint_link_create (WpEndpointLink * self, GVariant * src_data,
GVariant * sink_data, GError ** error)
{
/* TODO create pw_links based on the nodes & ports described in src/sink_data */
return TRUE;
}
static void
......
......@@ -95,6 +95,8 @@ simple_endpoint_prepare_link (WpEndpoint * self, guint32 stream_id,
{
/* TODO: verify that the remote end supports the same media type */
/* TODO: fill @properties with (node id, array(port ids)) */
return TRUE;
}
static void
......
......@@ -35,6 +35,7 @@ static gboolean
endpoint_prepare_link (WpEndpoint * self, guint32 stream_id,
WpEndpointLink * link, GVariant ** properties, GError ** error)
{
return TRUE;
}
static void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment