From d0595262853b7d067d5a019ed083354c3d81a8b9 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Mon, 12 Feb 2007 20:11:42 +0000 Subject: [PATCH] use g_string_append() instead of g_string_append_printf() we dont have g_string_append_printf() in gtk 1 svn path=/trunk/; revision=20798 --- gtk/packet_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/packet_list.c b/gtk/packet_list.c index 4449a2d9f5..0fda137f03 100644 --- a/gtk/packet_list.c +++ b/gtk/packet_list.c @@ -920,7 +920,7 @@ void packet_list_copy_summary_cb(GtkWidget * w _U_, gpointer data _U_, copy_summ for(col = 0; col < cfile.cinfo.num_cols; ++col) { if(col != 0) { if(CS_CSV == copy_type) { - g_string_append_printf(text,"\",\""); + g_string_append(text,"\",\""); } else { g_string_append_c(text, '\t'); }