summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/cygheap.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-08-22 02:40:22 +0000
committerChristopher Faylor <me@cgf.cx>2001-08-22 02:40:22 +0000
commitd4d65813a71a085416ba41811a0baac89d396f6a (patch)
tree8db0b2277962d7ae31a43d4428b417305d78405a /winsup/cygwin/cygheap.cc
parent26dda98bc2088c347184e0cd80592e27d7c4d08c (diff)
downloadcygnal-d4d65813a71a085416ba41811a0baac89d396f6a.tar.gz
cygnal-d4d65813a71a085416ba41811a0baac89d396f6a.tar.bz2
cygnal-d4d65813a71a085416ba41811a0baac89d396f6a.zip
fix typo.
Diffstat (limited to 'winsup/cygwin/cygheap.cc')
-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 0097bfe83..39e308217 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 <%p>) in child, cygheap, %E", cygheap, newaddr);
+ api_fatal ("Couldn't reserve space for cygwin's heap (%p <%p>) in child, %E", cygheap, newaddr);
/* Allocate same amount of memory as parent */
if (!VirtualAlloc (cygheap, n, MEM_COMMIT, PAGE_READWRITE))