Improve the formatting of some gstreamer error messages. Someone

Thu, 14 Jun 2007 07:00:47 +0000

author
Mark Doliner <markdoliner@pidgin.im>
date
Thu, 14 Jun 2007 07:00:47 +0000
changeset 17731
6486f382fb08
parent 17730
2a4bfde6c462
child 17732
b6325601b1ff

Improve the formatting of some gstreamer error messages. Someone
with the finch soc branch checked out should make these changes
there, too

pidgin/gtksound.c file | annotate | diff | comparison | revisions
--- a/pidgin/gtksound.c	Thu Jun 14 05:17:03 2007 +0000
+++ b/pidgin/gtksound.c	Thu Jun 14 07:00:47 2007 +0000
@@ -370,12 +370,12 @@
 		break;
 	case GST_MESSAGE_ERROR:
 		gst_message_parse_error(msg, &err, NULL);
-		purple_debug_error("gstreamer", err->message);
+		purple_debug_error("gstreamer", "%s\n", err->message);
 		g_error_free(err);
 		break;
 	case GST_MESSAGE_WARNING:
 		gst_message_parse_warning(msg, &err, NULL);
-		purple_debug_warning("gstreamer", err->message);
+		purple_debug_warning("gstreamer", "%s\n" err->message);
 		g_error_free(err);
 		break;
 	default:

mercurial