changeset 15361:f51862b1fd93

[gaim-migrate @ 18154] Compile warning fix. Also testing gaim-commits@lists.sourceforge.net is back up. I don't think it is. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 18 Jan 2007 07:19:51 +0000
parents 47cbaea185f0
children 6945eb35fba5
files gtk/gtksavedstatuses.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gtk/gtksavedstatuses.c	Thu Jan 18 05:07:46 2007 +0000
+++ b/gtk/gtksavedstatuses.c	Thu Jan 18 07:19:51 2007 +0000
@@ -325,7 +325,8 @@
 	g_list_free(sel_paths);
 
 	if (g_list_length(sel_titles) == 1)
-		title = g_strdup_printf(_("Are you sure you want to delete %s?"), sel_titles->data);
+		title = g_strdup_printf(_("Are you sure you want to delete %s?"),
+				(const gchar *)sel_titles->data);
 	else
 		title = g_strdup(_("Are you sure you want to delete the selected saved statuses?"));