[gaim-migrate @ 18154]

Thu, 18 Jan 2007 07:19:51 +0000

author
Mark Doliner <markdoliner@pidgin.im>
date
Thu, 18 Jan 2007 07:19:51 +0000
changeset 15423
750b9026217d
parent 15422
5615473cf975
child 15424
b478b50d76d3

[gaim-migrate @ 18154]
Compile warning fix. Also testing gaim-commits@lists.sourceforge.net
is back up. I don't think it is.

gtk/gtksavedstatuses.c file | annotate | diff | comparison | revisions
--- 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?"));
 

mercurial