summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-04-22 22:57:54 +0000
committerNicholas Clark <nick@ccl4.org>2007-04-22 22:57:54 +0000
commit222206208128104dd9837dda856fd43c0f121508 (patch)
tree68f934808dee8902f549f36c0e3af1823c17d9d6 /utf8.c
parentdc0a77c9b9af15fb3c72399a7235e96c7033cc43 (diff)
downloadperl-222206208128104dd9837dda856fd43c0f121508.tar.gz
Fix problems caused by downsizing in change 31017. (Which don't show
up until you test on a "real" architecture) p4raw-id: //depot/perl@31023
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index b43c74ba10..5d381bcb75 100644
--- a/utf8.c
+++ b/utf8.c
@@ -1596,7 +1596,7 @@ Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits
PUTBACK;
if (IN_PERL_COMPILETIME) {
/* XXX ought to be handled by lex_start */
- SAVEI32(PL_in_my);
+ SAVEI16(PL_in_my);
PL_in_my = 0;
sv_setpv(tokenbufsv, PL_tokenbuf);
}