aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-11-03 16:39:43 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-11-03 16:40:10 +0800
commitc3395bb565cc994f4871f52d20e4be506c75d6e8 (patch)
tree2c36a274067ddf048446e635081808b102f06ff4
parent2006f8e4601f2eab8e63884a86c4b4b626e963c6 (diff)
downloadgsoc2013-empathy-c3395bb565cc994f4871f52d20e4be506c75d6e8.tar
gsoc2013-empathy-c3395bb565cc994f4871f52d20e4be506c75d6e8.tar.gz
gsoc2013-empathy-c3395bb565cc994f4871f52d20e4be506c75d6e8.tar.bz2
gsoc2013-empathy-c3395bb565cc994f4871f52d20e4be506c75d6e8.tar.lz
gsoc2013-empathy-c3395bb565cc994f4871f52d20e4be506c75d6e8.tar.xz
gsoc2013-empathy-c3395bb565cc994f4871f52d20e4be506c75d6e8.tar.zst
gsoc2013-empathy-c3395bb565cc994f4871f52d20e4be506c75d6e8.zip
fix syntax error
-rw-r--r--src/empathy-event-manager.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/empathy-event-manager.c b/src/empathy-event-manager.c
index 439bb3a4a..882b28673 100644
--- a/src/empathy-event-manager.c
+++ b/src/empathy-event-manager.c
@@ -1002,8 +1002,9 @@ event_manager_pendings_changed_cb (EmpathyContactList *list,
return;
}
- header = g_strdup_printf (_("%s would like permission to see when you are available"),
- empathy_contact_get_alias (contact);
+ header = g_strdup_printf (
+ _("%s would like permission to see when you are available"),
+ empathy_contact_get_alias (contact));
if (!EMP_STR_EMPTY (message))
event_msg = g_strdup_printf (_("\nMessage: %s"), message);