diff options
Diffstat (limited to 'colm/bytecode.c')
-rw-r--r-- | colm/bytecode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/colm/bytecode.c b/colm/bytecode.c index a3313b58..6184f631 100644 --- a/colm/bytecode.c +++ b/colm/bytecode.c @@ -2098,10 +2098,10 @@ again: case IN_SET_ACCUM_CTX_WC: { debug( REALM_BYTECODE, "IN_SET_ACCUM_CTX_WC\n" ); - Tree *obj = vm_pop(); + Tree *parser = vm_pop(); Tree *val = vm_pop(); - parserSetContext( prg, sp, (Parser*)obj, val ); - treeDownref( prg, sp, obj ); + parserSetContext( prg, sp, (Parser*)parser, val ); + treeDownref( prg, sp, parser ); break; } |