# HG changeset patch # User Richard Laager # Date 1179561336 0 # Node ID c61187e0c752eaafa33377bffa28ab91624f7b31 # Parent 2e4e3c3028ae1e23c2a4155e89d0c8c799742ef2 Fix a compiler warning. diff -r 2e4e3c3028ae -r c61187e0c752 finch/gntprefs.c --- 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");