diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-05-07 17:10:17 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-05-07 17:10:17 +0800 |
commit | d0193ecc58b6eab69b4c4d3c9667c50bfc033b49 (patch) | |
tree | 7de875e06499adace751f64d27b16d614a009f84 /src/empathy-call-observer.c | |
parent | 9923159863e58051f64cc7a60b3fa16184526db8 (diff) | |
download | gsoc2013-empathy-d0193ecc58b6eab69b4c4d3c9667c50bfc033b49.tar.gz gsoc2013-empathy-d0193ecc58b6eab69b4c4d3c9667c50bfc033b49.tar.zst gsoc2013-empathy-d0193ecc58b6eab69b4c4d3c9667c50bfc033b49.zip |
Use TP_ERROR instead of TP_ERRORS
The latter has been deprecated in tp-glib master.
Diffstat (limited to 'src/empathy-call-observer.c')
-rw-r--r-- | src/empathy-call-observer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-call-observer.c b/src/empathy-call-observer.c index 2019cd02f..35ceeb046 100644 --- a/src/empathy-call-observer.c +++ b/src/empathy-call-observer.c @@ -252,7 +252,7 @@ observe_channels (TpSimpleObserver *observer, channel = find_main_channel (channels); if (channel == NULL) { - GError err = { TP_ERRORS, TP_ERROR_INVALID_ARGUMENT, + GError err = { TP_ERROR, TP_ERROR_INVALID_ARGUMENT, "Unknown channel type" }; DEBUG ("Didn't find any Call or StreamedMedia channel; ignoring"); |