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:
authorChristopher Faylor <me@cgf.cx>2003-02-04 06:01:17 +0300
committerChristopher Faylor <me@cgf.cx>2003-02-04 06:01:17 +0300
commit335556d58b52396f1f133033856bf6be397a29b8 (patch)
treeecec38e220fee1a21884cb97b752d8e79c0314b7 /winsup/cygwin/fhandler_serial.cc
parentad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff)
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/fhandler_serial.cc')
-rw-r--r--winsup/cygwin/fhandler_serial.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_serial.cc b/winsup/cygwin/fhandler_serial.cc
index 1c8edfe79..e11096832 100644
--- a/winsup/cygwin/fhandler_serial.cc
+++ b/winsup/cygwin/fhandler_serial.cc
@@ -214,7 +214,7 @@ fhandler_serial::open (path_conv *, int flags, mode_t mode)
syscall_printf ("fhandler_serial::open (%s, %p, %p)",
get_name (), flags, mode);
- if (!this->fhandler_base::open (NULL, flags, mode))
+ if (!fhandler_base::open (NULL, flags, mode))
return 0;
res = 1;
@@ -1012,7 +1012,7 @@ void
fhandler_serial::fixup_after_fork (HANDLE parent)
{
if (get_close_on_exec ())
- this->fhandler_base::fixup_after_fork (parent);
+ fhandler_base::fixup_after_fork (parent);
overlapped_setup ();
debug_printf ("io_status.hEvent %p", io_status.hEvent);
}