# HG changeset patch
# User Mark Doliner <mark@kingant.net>
# Date 1169104791 0
# Node ID f51862b1fd93094cdd8c4e3ddb4151c6f56f7704
# Parent  47cbaea185f00aab69cc73e9c8c4b94f7ebe53be
[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>

diff -r 47cbaea185f0 -r f51862b1fd93 gtk/gtksavedstatuses.c
--- 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?"));