diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-07-31 01:25:24 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-07-31 01:25:24 +0800 |
commit | ef19c477deba879906da074361527c7885db35ee (patch) | |
tree | 8f8b4a437e52b41d2ccd6bd1f3df1445d0205301 /libempathy | |
parent | 586a307e56f2bce203e80de9f9f9d5a15e34bec6 (diff) | |
download | gsoc2013-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
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-idle.c | 4 |
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); |