--- psiconv/trunk/lib/psiconv/parse_driver.c 1999/10/11 16:15:14 12 +++ psiconv/trunk/lib/psiconv/parse_driver.c 1999/10/11 18:19:09 13 @@ -87,11 +87,13 @@ header->section_table_offset, NULL,&table); + psiconv_progress(lev+2,off,"Going to read the picture sections"); (*result)->sections = psiconv_list_new(sizeof(*paint)); for (i = 0; i < psiconv_list_length(table); i ++) { entry = psiconv_list_get(table,i); - psiconv_parse_paint_data_section(buf,lev+2,*entry,NULL,&paint); - psiconv_list_add(table,paint); + psiconv_progress(lev+3,off,"Going to read picture section %i",i); + psiconv_parse_paint_data_section(buf,lev+3,*entry,NULL,&paint); + psiconv_list_add((*result)->sections,paint); } psiconv_free_header_section(header);