--- psiconv/trunk/lib/psiconv/parse_common.c 1999/10/27 13:09:40 18 +++ psiconv/trunk/lib/psiconv/parse_common.c 1999/10/30 22:28:54 25 @@ -18,6 +18,7 @@ */ #include "config.h" +#include "compat.h" #include #include @@ -67,7 +68,10 @@ } else if ((*result)->uid3 == PSICONV_ID_TEXTED) { (*result)->file = psiconv_texted_file; psiconv_debug(lev+2,off+len,"File is a TextEd file"); - } + } else if ((*result)->uid3 == PSICONV_ID_SKETCH) { + (*result)->file = psiconv_sketch_file; + psiconv_debug(lev+2,off+len,"File is a Sketch file"); + } } else if ((*result)->uid2 == PSICONV_ID_MBM_FILE) { (*result)->file = psiconv_mbm_file; if ((*result)->uid3 != 0x00) @@ -145,7 +149,7 @@ *length = len; psiconv_progress(lev+1,off+len-1,"End of section table section " - "(total length: %08x", len); + "(total length: %08x)", len); return res; }