Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/heap.cc')
-rw-r--r--winsup/cygwin/heap.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/heap.cc b/winsup/cygwin/heap.cc
index 6a35b9c8f..43ece46b6 100644
--- a/winsup/cygwin/heap.cc
+++ b/winsup/cygwin/heap.cc
@@ -52,8 +52,8 @@ heap_init ()
break;
}
if (p == NULL)
- api_fatal ("1. unable to allocate heap, heap_chunk_size %d, pid %d, %E",
- brkchunk, myself->pid);
+ api_fatal ("1. unable to allocate heap %p, heap_chunk_size %d, pid %d, %E",
+ brkbase, brkchunk, myself->pid);
if (p != brkbase)
api_fatal ("heap allocated but not at %p", brkbase);
if (! VirtualAlloc (brkbase, allocsize, MEM_COMMIT, PAGE_READWRITE))