diff options
author | Steve Hay <SteveHay@planit.com> | 2005-12-14 12:41:02 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-12-14 12:41:02 +0000 |
commit | 3ecdc9a4de4528c9a199788c310228c7e8f3356f (patch) | |
tree | a4d31239798e363a0ae7522c289e1854fd264f6e /util.c | |
parent | 4e086238dab7604a27d1e87c6edc434dec7cc39d (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |