diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-01-15 08:02:44 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-01-15 08:02:44 +0000 |
commit | a594c7b4495766324bc28504b0f4af2b5424ed02 (patch) | |
tree | e0bb7214bbe33949ef4257e5071f3d7035aa7af6 /op.c | |
parent | 965155cb95a9be50d5ff126b516ea1fda1cb74ee (diff) | |
download | perl-a594c7b4495766324bc28504b0f4af2b5424ed02.tar.gz |
Typo in #else branch of PL_SLAB_ALLOC
p4raw-id: //depot/perlio@14269
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -82,7 +82,7 @@ S_Slab_Free(pTHX_ void *op) #else #define NewOp(m, var, c, type) Newz(m, var, c, type) -#define FreeOp(p) SafeFree(p) +#define FreeOp(p) Safefree(p) #endif /* * In the following definition, the ", Nullop" is just to make the compiler |