Mercurial > pidgin.yaz
changeset 17171:c61187e0c752
Fix a compiler warning.
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sat, 19 May 2007 07:55:36 +0000 |
parents | 2e4e3c3028ae |
children | 7484b56a82f0 b26a225b6fc6 |
files | finch/gntprefs.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/finch/gntprefs.c Sat May 19 07:53:30 2007 +0000 +++ b/finch/gntprefs.c Sat May 19 07:55:36 2007 +0000 @@ -76,7 +76,7 @@ get_idle_options() { GList *list = NULL; - list = g_list_append(list, _("Based on keyboard use")); + list = g_list_append(list, (char *)_("Based on keyboard use")); list = g_list_append(list, "system"); list = g_list_append(list, (char*)_("From last sent message")); list = g_list_append(list, "purple");