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 /op.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 'op.h')
-rw-r--r-- | op.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -590,9 +590,9 @@ struct loop { #if defined(PL_OP_SLAB_ALLOC) #define NewOp(m,var,c,type) \ - (var = (type *) Perl_Slab_Alloc(aTHX_ m,c*sizeof(type))) + (var = (type *) Perl_Slab_Alloc(aTHX_ c*sizeof(type))) #define NewOpSz(m,var,size) \ - (var = (OP *) Perl_Slab_Alloc(aTHX_ m,size)) + (var = (OP *) Perl_Slab_Alloc(aTHX_ size)) #define FreeOp(p) Perl_Slab_Free(aTHX_ p) #else #define NewOp(m, var, c, type) \ |