summaryrefslogtreecommitdiff
path: root/universal.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-03-21 06:06:44 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-03-21 06:06:44 +0000
commitcc507455df60f06ecd74b2df5a0ae9f17fb3291d (patch)
tree5f131231aae2e4f8465cd9aa6647185d789c82fc /universal.c
parent90430aa1bf5124b92f92cfc6b13f379955a95711 (diff)
downloadperl-cc507455df60f06ecd74b2df5a0ae9f17fb3291d.tar.gz
make parenthetic warnings look consistent; make diagnostic on
"use 5.6" et al mention the alternate form; pod fixups p4raw-id: //depot/perl@5851
Diffstat (limited to 'universal.c')
-rw-r--r--universal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/universal.c b/universal.c
index 28e08969b4..686d9f8610 100644
--- a/universal.c
+++ b/universal.c
@@ -246,8 +246,8 @@ XS(XS_UNIVERSAL_VERSION)
/* they said C<use Foo v1.2.3> and $Foo::VERSION
* doesn't look like a float: do string compare */
if (sv_cmp(req,sv) == 1) {
- Perl_croak(aTHX_ "%s version v%vd required--"
- "this is only version v%vd",
+ Perl_croak(aTHX_ "%s v%vd required--"
+ "this is only v%vd",
HvNAME(pkg), req, sv);
}
goto finish;