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/cygheap.cc | |
parent | a9ae96dde4c22f69c06f2c7b0ace0b0ad07ee0e5 (diff) | |
download | newlib-9c510edc61bef580f66590d0932a64873307e1c5.zip newlib-9c510edc61bef580f66590d0932a64873307e1c5.tar.gz newlib-9c510edc61bef580f66590d0932a64873307e1c5.tar.bz2 |
Eliminate excess whitespace.
Diffstat (limited to 'winsup/cygwin/cygheap.cc')
-rw-r--r-- | winsup/cygwin/cygheap.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc index 739c4ca..79fb484 100644 --- a/winsup/cygwin/cygheap.cc +++ b/winsup/cygwin/cygheap.cc @@ -93,12 +93,12 @@ cygheap_setup_for_child (child_info *ci, bool dup_later) void __stdcall cygheap_setup_for_child_cleanup (void *newcygheap, child_info *ci, - bool dup_it_now) + bool dup_it_now) { if (dup_it_now) { /* NOTE: There is an assumption here that cygheap_max has not changed - between the time that cygheap_setup_for_child was called and now. + between the time that cygheap_setup_for_child was called and now. Make sure that this is a correct assumption. */ cygheap_protect->acquire (); dup_now (newcygheap, ci, (char *) cygheap_max - (char *) cygheap); @@ -377,13 +377,13 @@ init_cygheap::etc_changed () FILE_NOTIFY_CHANGE_LAST_WRITE); if (etc_changed_h == INVALID_HANDLE_VALUE) system_printf ("Can't open /etc for checking, %E", (char *) pwd, - etc_changed_h); + etc_changed_h); else if (!DuplicateHandle (hMainProc, etc_changed_h, hMainProc, - &etc_changed_h, 0, TRUE, + &etc_changed_h, 0, TRUE, DUPLICATE_SAME_ACCESS | DUPLICATE_CLOSE_SOURCE)) { system_printf ("Can't inherit /etc handle, %E", (char *) pwd, - etc_changed_h); + etc_changed_h); etc_changed_h = INVALID_HANDLE_VALUE; } } |