diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2005-06-23 22:59:36 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2005-06-23 22:59:36 +0000 |
commit | 97bf4a8db0735eddad0b5c21db0179b51615ee65 (patch) | |
tree | a1604b4d01426e921f15a99d75a17d3ddc020992 /pad.c | |
parent | 9ad9869ce96041d364276ea3274adb7f55af5eff (diff) | |
download | perl-97bf4a8db0735eddad0b5c21db0179b51615ee65.tar.gz |
change 24967 got the #endif in the wrong place
p4raw-id: //depot/perl@24968
Diffstat (limited to 'pad.c')
-rw-r--r-- | pad.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1063,9 +1063,9 @@ Perl_pad_swipe(pTHX_ PADOFFSET po, bool refadjust) SvPADTMP_on(PL_curpad[po]); #else PL_curpad[po] = &PL_sv_undef; +#endif if ((I32)po < PL_padix) PL_padix = po - 1; -#endif } |