pidgin/purple-plugin-pack

compile warning fix
org.guifications.plugins
2008-05-17, nosnilmot
9e2f8ef9e772
Parents 0ae6b0dd9342
Children b12e0d47e670
compile warning fix
--- a/autoprofile/gtk_widget.c Sat May 17 17:51:47 2008 -0400
+++ b/autoprofile/gtk_widget.c Sat May 17 17:52:16 2008 -0400
@@ -437,7 +437,7 @@
s = g_string_new ("");
g_string_printf (s, "[%s]", w->alias);
gtk_selection_data_set (data, gdk_atom_intern ("STRING", FALSE),
- 8, s->str, strlen(s->str)+1);
+ 8, (guchar *)s->str, strlen(s->str)+1);
g_string_free (s, TRUE);
gtk_tree_path_free (source_row);