From: Steve Hay Date: Tue, 12 Jul 2005 08:20:11 +0000 (+0000) Subject: Fix worrying typo in handy.h :-s X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aab6a430482496c41403384de333f8bf760ce700;p=p5sagit%2Fp5-mst-13.2.git Fix worrying typo in handy.h :-s p4raw-id: //depot/perl@25117 --- diff --git a/handy.h b/handy.h index 539bf76..106996d 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))))))