summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-07-12 08:20:11 +0000
committerSteve Hay <SteveHay@planit.com>2005-07-12 08:20:11 +0000
commitaab6a430482496c41403384de333f8bf760ce700 (patch)
treee32689fbe3aecc9a33c8b497c6e17fa6a83e2605 /handy.h
parent9f653bb54868b8547466924d4ce483acb8987efb (diff)
downloadperl-aab6a430482496c41403384de333f8bf760ce700.tar.gz
Fix worrying typo in handy.h :-s
p4raw-id: //depot/perl@25117
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/handy.h b/handy.h
index 539bf766a7..106996d556 100644
--- a/handy.h
+++ b/handy.h
@@ -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))))))