diff options
author | David Mitchell <davem@iabyn.com> | 2016-06-14 10:34:12 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-06-14 10:34:12 +0100 |
commit | f871eec40e9a7795680dac669164adc39cb6a2a2 (patch) | |
tree | 1a035b1c5502df10d31dae0deeb1037a6a5363d6 /ext | |
parent | 5347602a6bb67df5acf516eeba93020f8a3bdf5f (diff) | |
download | perl-f871eec40e9a7795680dac669164adc39cb6a2a2.tar.gz |
APItest.xs: silence compiler warning
Diffstat (limited to 'ext')
-rw-r--r-- | ext/XS-APItest/APItest.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/XS-APItest/APItest.xs b/ext/XS-APItest/APItest.xs index caeb810f31..f73a71519e 100644 --- a/ext/XS-APItest/APItest.xs +++ b/ext/XS-APItest/APItest.xs @@ -4194,7 +4194,7 @@ CODE: } else if (items == 3) { Perl_load_module(aTHX_ flags, SvREFCNT_inc(name), SvREFCNT_inc(ST(2))); } else - Perl_croak(aTHX_ "load_module can't yet support %lu items", items); + Perl_croak(aTHX_ "load_module can't yet support %"IVdf" items", (IV)items); MODULE = XS::APItest PACKAGE = XS::APItest::AUTOLOADtest |