Skip to content

Commit

Permalink
Fix return value of p5_av_top_index
Browse files Browse the repository at this point in the history
Thanks to carlin++ for pointing this out...again.
  • Loading branch information
niner committed Sep 30, 2014
1 parent 885327a commit bb1c7d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Inline/Perl5.pm6
Expand Up @@ -113,7 +113,7 @@ sub p5_buf_to_sv(Perl5Interpreter, Int, CArray[uint8])
returns OpaquePointer { ... }
native(&p5_buf_to_sv);
sub p5_av_top_index(Perl5Interpreter, OpaquePointer)
returns Int { ... }
returns int32 { ... }
native(&p5_av_top_index);
sub p5_av_fetch(Perl5Interpreter, OpaquePointer, int32)
returns OpaquePointer { ... }
Expand Down

0 comments on commit bb1c7d5

Please sign in to comment.