projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
c561b89
)
Remove the (sometimes) unused variable from change 30652.
Nicholas Clark [Wed, 21 Mar 2007 16:31:52 +0000 (16:31 +0000)]
p4raw-id: //depot/perl@30661
util.c
patch
|
blob
|
blame
|
history
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) {