diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-08 12:50:15 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-08 12:50:15 +0000 |
commit | e98227050ad91f6c381bce92f17cf9258b638699 (patch) | |
tree | 4f4cdeeabdd8c7a44d997ed4af619ee23593c9eb /ext | |
parent | c910b28aed05bec7c1e3d60658ca4a270bf0077d (diff) | |
download | perl-e98227050ad91f6c381bce92f17cf9258b638699.tar.gz |
5.8.1 was mistakenly redefining PL_sv_placeholder.
p4raw-id: //depot/perl@21088
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Storable/Storable.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Storable/Storable.xs b/ext/Storable/Storable.xs index ce8185c9c7..77003aaf76 100644 --- a/ext/Storable/Storable.xs +++ b/ext/Storable/Storable.xs @@ -783,7 +783,7 @@ static const char byteorderstr_56[] = {BYTEORDER_BYTES_56, 0}; #define STORABLE_BIN_WRITE_MINOR 6 #endif /* (PATCHLEVEL <= 6) */ -#if (PATCHLEVEL <= 8 || (PATCHLEVEL == 8 && SUBVERSION < 1)) +#if (PATCHLEVEL < 8 || (PATCHLEVEL == 8 && SUBVERSION < 1)) #define PL_sv_placeholder PL_sv_undef #endif |