X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fcode.c;h=9fce3a8f91e132d356905fe00b0cd3eeb6518889;hb=35b692b1792f584c2b8d69cbbefa7794e3619f86;hp=237439230282116ec147b3146e8a5bc7aeefba84;hpb=1325a5112e6a78ab648567fdc0b64ba352b9b8f9;p=swftools.git diff --git a/lib/as3/code.c b/lib/as3/code.c index 2374392..9fce3a8 100644 --- a/lib/as3/code.c +++ b/lib/as3/code.c @@ -911,7 +911,7 @@ int code_dump(code_t*c, abc_exception_list_t*exceptions, abc_file_t*file, char*p free(m); } else if(*p == 'm') { abc_method_t*m = (abc_method_t*)data; - fprintf(fo, "[method %s]", m->name); + fprintf(fo, "[method %08x %s]", m, m->name); } else if(*p == 'c') { abc_class_t*cls = (abc_class_t*)data; char*classname = multiname_tostring(cls->classname);