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/fhandler_windows.cc')
-rw-r--r--winsup/cygwin/fhandler_windows.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/fhandler_windows.cc b/winsup/cygwin/fhandler_windows.cc
index d6b3059e6..9d3e07e55 100644
--- a/winsup/cygwin/fhandler_windows.cc
+++ b/winsup/cygwin/fhandler_windows.cc
@@ -128,9 +128,9 @@ void
fhandler_windows::set_close_on_exec (int val)
{
if (get_handle ())
- this->fhandler_base::set_close_on_exec (val);
+ fhandler_base::set_close_on_exec (val);
else
- this->fhandler_base::set_close_on_exec_flag (val);
+ fhandler_base::set_close_on_exec_flag (val);
void *h = hWnd_;
if (h)
set_inheritance (h, val);
@@ -140,7 +140,7 @@ void
fhandler_windows::fixup_after_fork (HANDLE parent)
{
if (get_handle ())
- this->fhandler_base::fixup_after_fork (parent);
+ fhandler_base::fixup_after_fork (parent);
void *h = hWnd_;
if (h)
fork_fixup (parent, h, "hWnd_");