diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-04-03 15:41:26 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-04-03 15:41:26 +0000 |
commit | 63da68370303e866ac043996a57db4b7e44b7270 (patch) | |
tree | c9a012b599e7c2232726a0c6999f30a72f2f4073 /perl.c | |
parent | aedff202e428171aca34f30e105f7d4462b85de2 (diff) | |
download | perl-63da68370303e866ac043996a57db4b7e44b7270.tar.gz |
Clean up some compiler warnings spotted by smokers.
p4raw-id: //depot/perl@33639
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3240,7 +3240,7 @@ Perl_moreswitches(pTHX_ const char *s) if (colon) Perl_croak(aTHX_ "Invalid module name %.*s with -%c option: " "contains single ':'", - s - start, start, option); + (int)(s - start), start, option); end = s + strlen(s); if (*s != '=') { sv_catpvn(sv, start, end - start); |