]> git.0d.be Git - empathy.git/commitdiff
Fix typo
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>
Thu, 30 Jul 2009 17:25:24 +0000 (19:25 +0200)
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>
Thu, 30 Jul 2009 17:25:24 +0000 (19:25 +0200)
libempathy/empathy-idle.c

index f60fc0f85bfafb0effe99c7871085ee2f166ff9c..b77dd0732d6c2e659ca751646e83eb8408655884 100644 (file)
@@ -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);