changeset 13814:6e14740ea2a0

[gaim-migrate @ 16245] We don't really need to use the _printf() version of g_string_append() to append a plain string. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sat, 10 Jun 2006 19:03:24 +0000
parents a92d9be29d87
children 724e4c08391a
files src/gtkdialogs.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkdialogs.c	Sat Jun 10 19:01:40 2006 +0000
+++ b/src/gtkdialogs.c	Sat Jun 10 19:03:24 2006 +0000
@@ -507,9 +507,9 @@
 #endif
 
 #ifdef HAVE_LIBXML
-	g_string_append_printf(str, "    <b>XML Parser:</b> libxml2<br/>");
+	g_string_append(str, "    <b>XML Parser:</b> libxml2<br/>");
 #else
-	g_string_append_printf(str, "    <b>XML Parser:</b> GMarkup<br/>");
+	g_string_append(str, "    <b>XML Parser:</b> GMarkup<br/>");
 #endif
 
 #ifndef _WIN32