diff options
author | Olivier CrĂȘte <olivier.crete@collabora.co.uk> | 2010-03-07 07:27:56 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-29 23:36:24 +0800 |
commit | b860ad599ff905a735ca00f4f256c43411c09a85 (patch) | |
tree | fdf90f33db97791c39ac527e4d68e383bb9bc475 /src | |
parent | fc5be44316c04af418f131f6be0d9e4d9dda2e39 (diff) | |
download | gsoc2013-empathy-b860ad599ff905a735ca00f4f256c43411c09a85.tar gsoc2013-empathy-b860ad599ff905a735ca00f4f256c43411c09a85.tar.gz gsoc2013-empathy-b860ad599ff905a735ca00f4f256c43411c09a85.tar.bz2 gsoc2013-empathy-b860ad599ff905a735ca00f4f256c43411c09a85.tar.lz gsoc2013-empathy-b860ad599ff905a735ca00f4f256c43411c09a85.tar.xz gsoc2013-empathy-b860ad599ff905a735ca00f4f256c43411c09a85.tar.zst gsoc2013-empathy-b860ad599ff905a735ca00f4f256c43411c09a85.zip |
Return a telepathy error if the source can't be added
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-call-window.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 2b3be11aa..2e1be50e2 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -2116,7 +2116,7 @@ empathy_call_window_src_added_cb (EmpathyCallHandler *handler, return TRUE; } -static void +static gboolean empathy_call_window_sink_added_cb (EmpathyCallHandler *handler, GstPad *sink, guint media_type, gpointer user_data) { @@ -2148,6 +2148,7 @@ empathy_call_window_sink_added_cb (EmpathyCallHandler *handler, g_assert_not_reached (); } + return TRUE; } static void |