diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-05-03 01:19:00 +1000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-05-03 01:21:55 +1000 |
commit | 86e10ae19d90298873ec725d677f8d6e69375b31 (patch) | |
tree | d0bd5d9f2e16aed9a0cb499d0244999010da1102 /scope.c | |
parent | 3dee2d69a43fce68a5141cdb05ea9f43fc4b3837 (diff) | |
download | perl-86e10ae19d90298873ec725d677f8d6e69375b31.tar.gz |
Fix c6bf6a65 - 64 bit big endian builds were broken.
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -285,7 +285,7 @@ Perl_save_gp(pTHX_ GV *gv, I32 empty) SSPUSHINT(SvFAKE(gv)); SSPUSHPTR(GvGP(gv)); SSPUSHPTR(SvREFCNT_inc(gv)); - SSPUSHINT(SAVEt_GP); + SSPUSHUV(SAVEt_GP); /* Don't let the localized GV coerce into non-glob, otherwise we would * not be able to restore GP upon leave from context if that happened */ |