summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-12-14 12:41:02 +0000
committerSteve Hay <SteveHay@planit.com>2005-12-14 12:41:02 +0000
commit3ecdc9a4de4528c9a199788c310228c7e8f3356f (patch)
treea4d31239798e363a0ae7522c289e1854fd264f6e /util.c
parent4e086238dab7604a27d1e87c6edc434dec7cc39d (diff)
downloadperl-3ecdc9a4de4528c9a199788c310228c7e8f3356f.tar.gz
Fix compilation error when building with -DPERL_MEM_LOG_STDERR
p4raw-id: //depot/perl@26349
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 5b8aed0264..d8b28f2140 100644
--- a/util.c
+++ b/util.c
@@ -5055,7 +5055,7 @@ Perl_mem_log_alloc(const UV n, const UV typesize, const char *typename, Malloc_t
" %s = %"IVdf": %"UVxf"\n",
filename, linenumber, funcname, n, typesize,
typename, n * typesize, PTR2UV(newalloc));
- PerlLIO_write(2, buf, len));
+ PerlLIO_write(2, buf, len);
#endif
return newalloc;
}