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
This commit is contained in:
Ronnie Sahlberg 2007-02-12 20:11:42 +00:00
parent b26c1c4ca2
commit d059526285
1 changed files with 1 additions and 1 deletions

View File

@ -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');
}