aboutsummaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-08-20 16:03:54 +0000
committerChristopher Faylor <me@cgf.cx>2001-08-20 16:03:54 +0000
commitd9b68c2c7d3aaa10105fa9c4000f60284cbb9d26 (patch)
treeda042619f38bde0f0ea4c16af3e978baa17a7f9c /winsup
parentb1d0b9073c7213ebb7d5c316a7b16c5feef811e5 (diff)
downloadnewlib-d9b68c2c7d3aaa10105fa9c4000f60284cbb9d26.zip
newlib-d9b68c2c7d3aaa10105fa9c4000f60284cbb9d26.tar.gz
newlib-d9b68c2c7d3aaa10105fa9c4000f60284cbb9d26.tar.bz2
debug
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/cygheap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc
index 4db829f..0097bfe 100644
--- a/winsup/cygwin/cygheap.cc
+++ b/winsup/cygwin/cygheap.cc
@@ -112,7 +112,7 @@ cygheap_fixup_in_child (child_info *ci, bool execed)
DWORD n = (DWORD) cygheap_max - (DWORD) cygheap;
/* Reserve cygwin heap in same spot as parent */
if (!VirtualAlloc (cygheap, CYGHEAPSIZE, MEM_RESERVE, PAGE_NOACCESS))
- api_fatal ("Couldn't reserve space for cygwin's heap (%p) in child, cygheap, %E", cygheap);
+ api_fatal ("Couldn't reserve space for cygwin's heap (%p <%p>) in child, cygheap, %E", cygheap, newaddr);
/* Allocate same amount of memory as parent */
if (!VirtualAlloc (cygheap, n, MEM_COMMIT, PAGE_READWRITE))