summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-27 14:22:41 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-30 14:06:47 +0200
commit45198f65e0ed4c245d927de34a7f5a0860fc666b (patch)
treeff5d46281fbd90b95ff62873edb7749d844da9de
parent96013b1ba64f95a48f02f42f928ae8ccc75e7a66 (diff)
downloadtelepathy-logger-45198f65e0ed4c245d927de34a7f5a0860fc666b.tar.gz
tp_client_factory_add_contact_features_varargs now takes '0' as guard
-rw-r--r--telepathy-logger/observer.c2
-rw-r--r--tests/dbus/test-entity.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-logger/observer.c b/telepathy-logger/observer.c
index e05a2c2..c4be723 100644
--- a/telepathy-logger/observer.c
+++ b/telepathy-logger/observer.c
@@ -296,7 +296,7 @@ _tpl_observer_dup (GError **error)
TP_CONTACT_FEATURE_ALIAS,
TP_CONTACT_FEATURE_PRESENCE,
TP_CONTACT_FEATURE_AVATAR_TOKEN,
- TP_CONTACT_FEATURE_INVALID);
+ 0);
observer_singleton = g_object_new (TPL_TYPE_OBSERVER,
"factory", factory,
diff --git a/tests/dbus/test-entity.c b/tests/dbus/test-entity.c
index e49b5fd..b345b5e 100644
--- a/tests/dbus/test-entity.c
+++ b/tests/dbus/test-entity.c
@@ -108,7 +108,7 @@ test_entity_instantiation_from_tp_contact (void)
tp_client_factory_add_contact_features_varargs (factory,
TP_CONTACT_FEATURE_ALIAS,
TP_CONTACT_FEATURE_AVATAR_TOKEN,
- TP_CONTACT_FEATURE_INVALID);
+ 0);
result.loop = g_main_loop_new (NULL, FALSE);