This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix some recent compiler warnings
authorDavid Mitchell <davem@iabyn.com>
Fri, 17 Oct 2014 11:16:40 +0000 (12:16 +0100)
committerDavid Mitchell <davem@iabyn.com>
Fri, 17 Oct 2014 11:23:08 +0000 (12:23 +0100)
commit23270f966ec4ff1b9f41f332ac6a33cf250742f9
treee7a8bb3f2d94f306b66237d164c7cb8beb0cd37e
parent44d6f4bb188d509de38adc221f9892c9dc684fb8
fix some recent compiler warnings

Currently DBVARMG_SINGLE is deffed to 0, so

    mg->mg_private >= DBVARMG_SINGLE

gives an 'always true' warning.

sv_magicext's last arg is supposed to to be I32, but ARGTARG is a U32 or
U64.
mg.c
pp.c