This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove the (sometimes) unused variable from change 30652.
authorNicholas Clark <nick@ccl4.org>
Wed, 21 Mar 2007 16:31:52 +0000 (16:31 +0000)
committerNicholas Clark <nick@ccl4.org>
Wed, 21 Mar 2007 16:31:52 +0000 (16:31 +0000)
p4raw-id: //depot/perl@30661

util.c

diff --git a/util.c b/util.c
index b6acab4..edd51b5 100644 (file)
--- 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) {