aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-07-31 01:25:24 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-07-31 01:25:24 +0800
commitef19c477deba879906da074361527c7885db35ee (patch)
tree8f8b4a437e52b41d2ccd6bd1f3df1445d0205301
parent586a307e56f2bce203e80de9f9f9d5a15e34bec6 (diff)
downloadgsoc2013-empathy-ef19c477deba879906da074361527c7885db35ee.tar
gsoc2013-empathy-ef19c477deba879906da074361527c7885db35ee.tar.gz
gsoc2013-empathy-ef19c477deba879906da074361527c7885db35ee.tar.bz2
gsoc2013-empathy-ef19c477deba879906da074361527c7885db35ee.tar.lz
gsoc2013-empathy-ef19c477deba879906da074361527c7885db35ee.tar.xz
gsoc2013-empathy-ef19c477deba879906da074361527c7885db35ee.tar.zst
gsoc2013-empathy-ef19c477deba879906da074361527c7885db35ee.zip
Fix typo
-rw-r--r--libempathy/empathy-idle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-idle.c b/libempathy/empathy-idle.c
index f60fc0f85..b77dd0732 100644
--- a/libempathy/empathy-idle.c
+++ b/libempathy/empathy-idle.c
@@ -577,7 +577,7 @@ empathy_idle_do_set_presence (EmpathyIdle *idle,
const gchar *status_message)
{
EmpathyIdlePriv *priv = GET_PRIV (idle);
- const gchar *statusses[NUM_TP_CONNECTION_PRESENCE_TYPES] = {
+ const gchar *statuses[NUM_TP_CONNECTION_PRESENCE_TYPES] = {
NULL,
"offline",
"available",
@@ -592,7 +592,7 @@ empathy_idle_do_set_presence (EmpathyIdle *idle,
g_assert (status_type > 0 && status_type < NUM_TP_CONNECTION_PRESENCE_TYPES);
- status = statusses[status_type];
+ status = statuses[status_type];
g_return_if_fail (status != NULL);