summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-07-26 03:15:33 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-07-26 03:15:33 +0000
commit265f5c4a1b0b933305c553dbf2bf285c59261bc3 (patch)
treebf6d8792c6d0bb8807b4400b4a22f1233709b7c7 /gv.c
parent94672f70d8cd80d85af601db230d5a82be7c7f28 (diff)
downloadperl-265f5c4a1b0b933305c553dbf2bf285c59261bc3.tar.gz
INSTALL =~ s/5.006/5.6/; delay loading Errno until needed
(%! has the necessary magic); misc typos p4raw-id: //depot/perl@3754
Diffstat (limited to 'gv.c')
-rw-r--r--gv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gv.c b/gv.c
index 470ef11ccb..357f46d387 100644
--- a/gv.c
+++ b/gv.c
@@ -718,7 +718,7 @@ Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, I32 sv_type)
break;
if (sv_type > SVt_PV && PL_curcop != &PL_compiling) {
HV* stash = gv_stashpvn("Errno",5,FALSE);
- if(!stash || !(gv_fetchmethod(stash, "TIEHASH"))) {
+ if (!stash || !(gv_fetchmethod(stash, "TIEHASH"))) {
dSP;
PUTBACK;
require_pv("Errno.pm");