X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fas3%2Fopcodes.h;h=b95ed07c9a84a87b0060bd249e808ebf0209ee41;hp=6bc38b8423c8ad792b70e24b753d4c2796de4c3f;hb=62a83d162b254d91da418cee25f5b87b067a3f92;hpb=dd5f16e46f47e5833d68c75ecde8f33e0d1997fd diff --git a/lib/as3/opcodes.h b/lib/as3/opcodes.h index 6bc38b8..b95ed07 100644 --- a/lib/as3/opcodes.h +++ b/lib/as3/opcodes.h @@ -402,8 +402,8 @@ code_t* abc_pushfalse(code_t*prev); code_t* abc_pushint(code_t*prev, int i); #define pushint(method,i) (method->code = abc_pushint(method->code,i)) #define OPCODE_PUSHINT 0x2d -code_t* abc_pushnamespace(code_t*prev, int v); -#define pushnamespace(method,v) (method->code = abc_pushnamespace(method->code,v)) +code_t* abc_pushnamespace(code_t*prev, namespace_t* ns); +#define pushnamespace(method,ns) (method->code = abc_pushnamespace(method->code,ns)) #define OPCODE_PUSHNAMESPACE 0x31 code_t* abc_pushnan(code_t*prev); #define pushnan(method) (method->code = abc_pushnan(method->code))