diff finch/gntdebug.c @ 24453:0320b4a33432

Backport the 'purple_debug_*(msg)' -> 'purple_debug_*("%s", msg);' fixes. applied changes from fef93b50fe2b6c172be07648cbc70b62a42fcfff through 111d22afa901c48464e4da4d37d1cca3381ae162
author Richard Laager <rlaager@wiktel.com>
date Sun, 16 Nov 2008 06:50:19 +0000
parents 39e07c9ae0d7
children e2e57d3c0578 adf153852bcf
line wrap: on
line diff
--- a/finch/gntdebug.c	Sun Nov 16 00:10:02 2008 +0000
+++ b/finch/gntdebug.c	Sun Nov 16 06:50:19 2008 +0000
@@ -233,7 +233,7 @@
 	}
 
 	fprintf(fp, "Finch Debug Log : %s\n", purple_date_format_full(NULL));
-	fprintf(fp, tv->string->str);
+	fprintf(fp, "%s", tv->string->str);
 	fclose(fp);
 	gnt_widget_destroy(GNT_WIDGET(fs));
 }