diff options
author | Christopher Faylor <me@cgf.cx> | 2001-11-05 06:09:15 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-11-05 06:09:15 +0000 |
commit | 9c510edc61bef580f66590d0932a64873307e1c5 (patch) | |
tree | dca774d4fabdf48d9098f7691beb1178c12aab0b /winsup/cygwin/heap.cc | |
parent | a9ae96dde4c22f69c06f2c7b0ace0b0ad07ee0e5 (diff) | |
download | cygnal-9c510edc61bef580f66590d0932a64873307e1c5.tar.gz cygnal-9c510edc61bef580f66590d0932a64873307e1c5.tar.bz2 cygnal-9c510edc61bef580f66590d0932a64873307e1c5.zip |
Eliminate excess whitespace.
Diffstat (limited to 'winsup/cygwin/heap.cc')
-rw-r--r-- | winsup/cygwin/heap.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/heap.cc b/winsup/cygwin/heap.cc index eaa500c62..9a3e2b87a 100644 --- a/winsup/cygwin/heap.cc +++ b/winsup/cygwin/heap.cc @@ -70,14 +70,14 @@ heap_init () * to assure contiguous memory. */ cygheap->heapptr = cygheap->heaptop = cygheap->heapbase = VirtualAlloc(NULL, cygwin_shared->heap_chunk_size (), MEM_RESERVE, - PAGE_NOACCESS); + PAGE_NOACCESS); if (cygheap->heapbase == NULL) api_fatal ("2. unable to allocate heap, heap_chunk_size %d, %E", cygwin_shared->heap_chunk_size ()); } debug_printf ("heap base %p, heap top %p", cygheap->heapbase, - cygheap->heaptop); + cygheap->heaptop); page_const--; malloc_init (); } |