summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-01-27 14:24:39 +0100
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-05-12 12:30:42 +0200
commitbcf76973898c6bfc180067fc5beb814d9289172a (patch)
treebf4b48b36e1a0d3f96956107688367326344c409
parent045f4e1e8e3b951b8ecb1e251a0aa91471e47ef0 (diff)
rename check_feature_validity to assert_feature_validity
-rw-r--r--telepathy-glib/proxy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-glib/proxy.c b/telepathy-glib/proxy.c
index 14b7ab3f..7be78d10 100644
--- a/telepathy-glib/proxy.c
+++ b/telepathy-glib/proxy.c
@@ -961,7 +961,7 @@ tp_proxy_set_feature_state (TpProxy *self,
}
static void
-check_feature_validity (TpProxy *self,
+assert_feature_validity (TpProxy *self,
const TpProxyFeature *feature)
{
g_assert (feature != NULL);
@@ -1019,7 +1019,7 @@ tp_proxy_constructor (GType type,
for (i = 0; features[i].name != 0; i++)
{
- check_feature_validity (self, &features[i]);
+ assert_feature_validity (self, &features[i]);
tp_proxy_set_feature_state (self, features[i].name,
FEATURE_STATE_UNWANTED);