Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
nqp::tellfh should return int. lizmat++
  • Loading branch information
donaldh committed May 28, 2014
1 parent b436340 commit 5cebf27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/parrot/QAST/Operations.nqp
Expand Up @@ -1750,7 +1750,7 @@ QAST::Operations.add_core_op('tellfh', -> $qastcomp, $op {
nqp::die("The 'tellfh' op expects one operand");
}
$qastcomp.as_post(QAST::Op.new(
:op('callmethod'), :name('tell'),
:op('callmethod'), :name('tell'), :returns(int),
$op[0]
))
});
Expand Down

0 comments on commit 5cebf27

Please sign in to comment.