Fix no return statement warnings

This commit is contained in:
Julian Bouzas 2019-05-22 09:49:09 -04:00
parent 220b95fb05
commit 92dc9d5cdf
3 changed files with 5 additions and 0 deletions

View file

@ -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

View file

@ -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

View file

@ -35,6 +35,7 @@ static gboolean
endpoint_prepare_link (WpEndpoint * self, guint32 stream_id,
WpEndpointLink * link, GVariant ** properties, GError ** error)
{
return TRUE;
}
static void