diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-04-02 19:53:06 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-04-02 19:53:06 +0000 |
commit | e91d68d56f1589ba6c8f530bcf8cdeb3d8943dcf (patch) | |
tree | 2b39de1aa9dd09a5fd49f1aba126465d5455b6d5 /embed.h | |
parent | f7388fd6271b888f4147705eaf2b3a0dd01c3e3d (diff) | |
download | perl-e91d68d56f1589ba6c8f530bcf8cdeb3d8943dcf.tar.gz |
For Perl_Slab_Alloc(), eliminate the unused parameter 'm'.
p4raw-id: //depot/perl@30832
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3451,7 +3451,7 @@ #endif #endif #if defined(PL_OP_SLAB_ALLOC) -#define Slab_Alloc(a,b) Perl_Slab_Alloc(aTHX_ a,b) +#define Slab_Alloc(a) Perl_Slab_Alloc(aTHX_ a) #define Slab_Free(a) Perl_Slab_Free(aTHX_ a) # if defined(PERL_DEBUG_READONLY_OPS) #ifdef PERL_CORE |