diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2019-01-08 21:38:04 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2019-01-08 21:47:28 +0100 |
commit | 9ba65ab8b5c5ece442931e585230d1e0422da538 (patch) | |
tree | fbc7477e85f5febbb2419924500fd955347d1790 | |
parent | 2d015e0e68f45d7b1a96e63e39086d35df48344b (diff) | |
download | cygnal-9ba65ab8b5c5ece442931e585230d1e0422da538.tar.gz cygnal-9ba65ab8b5c5ece442931e585230d1e0422da538.tar.bz2 cygnal-9ba65ab8b5c5ece442931e585230d1e0422da538.zip |
Cygwin: fhandler_process_fd: Fix spacing
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r-- | winsup/cygwin/fhandler_process_fd.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_process_fd.cc b/winsup/cygwin/fhandler_process_fd.cc index a9d085ae5..a3691d9c8 100644 --- a/winsup/cygwin/fhandler_process_fd.cc +++ b/winsup/cygwin/fhandler_process_fd.cc @@ -70,7 +70,7 @@ fhandler_process_fd::fetch_fh (HANDLE &out_hdl, uint32_t flags) hdl = pc.deserialize (buf); } BOOL ret = DuplicateHandle (proc, hdl, GetCurrentProcess (), &hdl, - 0, FALSE, DUPLICATE_SAME_ACCESS); + 0, FALSE, DUPLICATE_SAME_ACCESS); if (proc != GetCurrentProcess ()) CloseHandle (proc); if (!ret) |