From: Nicholas Clark Date: Wed, 21 Mar 2007 16:31:52 +0000 (+0000) Subject: Remove the (sometimes) unused variable from change 30652. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a93c8a9e4a51d34ca994257e736b80ca04ec6f9e;p=p5sagit%2Fp5-mst-13.2.git Remove the (sometimes) unused variable from change 30652. p4raw-id: //depot/perl@30661 --- diff --git a/util.c b/util.c index b6acab4..edd51b5 100644 --- a/util.c +++ b/util.c @@ -258,11 +258,13 @@ Perl_safesyscalloc(MEM_SIZE count, MEM_SIZE size) { dTHX; Malloc_t ptr; +#ifdef DEBUGGING const MEM_SIZE total_size = size * count -#ifdef PERL_TRACK_MEMPOOL +#ifdef PERL_TRACK_MEMPOOL + sTHX #endif ; +#endif #ifdef HAS_64K_LIMIT if (total_size > 0xffff) {