summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-27 11:36:40 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-27 11:36:40 +0000
commit0222aa7dc291d283102ca6659c13703653b531c6 (patch)
tree752f28ac8c28a74b18cd6d57e3a5f34dddc5e96b /gv.c
parenteb3f6d219982f981ba1ce81b67a9b95bd33a6196 (diff)
downloadperl-0222aa7dc291d283102ca6659c13703653b531c6.tar.gz
"lose the looses", from Abhijit Menon-Sen.
p4raw-id: //depot/perl@10979
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 89b15e1277..86f48434a6 100644
--- a/gv.c
+++ b/gv.c
@@ -447,7 +447,7 @@ Perl_gv_autoload4(pTHX_ HV *stash, const char *name, STRLEN len, I32 method)
* pass along the same data via some unused fields in the CV
*/
CvSTASH(cv) = stash;
- SvPVX(cv) = (char *)name; /* cast to loose constness warning */
+ SvPVX(cv) = (char *)name; /* cast to lose constness warning */
SvCUR(cv) = len;
return gv;
}