--- psiconv/trunk/lib/psiconv/parse_image.c 1999/10/30 22:28:54 25 +++ psiconv/trunk/lib/psiconv/parse_image.c 1999/12/03 23:13:55 42 @@ -23,16 +23,16 @@ #include "data.h" #include "parse_routines.h" -int psiconv_parse_mbm_jumptable_section(const psiconv_buffer buf,int lev, - psiconv_u32 off, int *length, - psiconv_mbm_jumptable_section *result) +int psiconv_parse_jumptable_section(const psiconv_buffer buf,int lev, + psiconv_u32 off, int *length, + psiconv_jumptable_section *result) { int res = 0; int len = 0; psiconv_u32 listlen,temp; int i; - psiconv_progress(lev+1,off+len,"Going to read the mbm jumptable section"); + psiconv_progress(lev+1,off+len,"Going to read the jumptable section"); (*result) = psiconv_list_new(sizeof(psiconv_u32)); psiconv_progress(lev+2,off+len,"Going to read the list length"); @@ -51,7 +51,7 @@ if (length) *length = len; - psiconv_progress(lev+1,off+len-1,"End of mbm jumptable section " + psiconv_progress(lev+1,off+len-1,"End of jumptable section " "(total length: %08x)", len); return res;