diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-06-01 12:28:14 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-01 12:50:05 +0000 |
commit | 592f596992fbcfa7e7c135f9212d2ec2def553a6 (patch) | |
tree | c5f04cc360dd2fd72cb724f1a05e54f0fd6501c2 /xsutils.c | |
parent | 8876ff82c32e1f2c2fd30ec37c28e8bfb676c908 (diff) | |
download | perl-592f596992fbcfa7e7c135f9212d2ec2def553a6.tar.gz |
Re: [PATCH xsutils.c] Quieting warnings
Message-ID: <20010601112814.B29027@blackrider.blackstar.co.uk>
p4raw-id: //depot/perl@10371
Diffstat (limited to 'xsutils.c')
-rw-r--r-- | xsutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -127,8 +127,8 @@ XS(XS_attributes_bootstrap) dXSARGS; char *file = __FILE__; - if( items > 0 ) - Perl_croak(aTHX_ "Usage: bootstrap"); + if( items > 1 ) + Perl_croak(aTHX_ "Usage: attributes::bootstrap $module"); newXSproto("attributes::_warn_reserved", XS_attributes__warn_reserved, file, ""); newXS("attributes::_modify_attrs", XS_attributes__modify_attrs, file); |