diff options
author | Steve Hay <SteveHay@planit.com> | 2005-07-12 08:20:11 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-07-12 08:20:11 +0000 |
commit | aab6a430482496c41403384de333f8bf760ce700 (patch) | |
tree | e32689fbe3aecc9a33c8b497c6e17fa6a83e2605 /handy.h | |
parent | 9f653bb54868b8547466924d4ce483acb8987efb (diff) | |
download | perl-aab6a430482496c41403384de333f8bf760ce700.tar.gz |
Fix worrying typo in handy.h :-s
p4raw-id: //depot/perl@25117
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -699,7 +699,7 @@ Malloc_t Perl_mem_log_free(Malloc_t oldalloc, const char *filename, const int li /* pre 5.9.x compatibility */ #define New(x,v,n,t) Newx(v,n,t) #define Newc(x,v,n,t,c) Newxc(v,n,t,c) -#define Newc(x,v,n,t,c) Newxc(v,n,t,c) +#define Newz(x,v,n,t,c) Newxz(v,n,t,c) #define Renew(v,n,t) \ (v = (MEM_WRAP_CHECK_(n,t) MEM_LOG_REALLOC(n,t,v,(t*)saferealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t)))))) |