aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/fhandler_console.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-02-04 03:01:17 +0000
committerChristopher Faylor <me@cgf.cx>2003-02-04 03:01:17 +0000
commit335556d58b52396f1f133033856bf6be397a29b8 (patch)
treeecec38e220fee1a21884cb97b752d8e79c0314b7 /winsup/cygwin/fhandler_console.cc
parentad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff)
downloadnewlib-335556d58b52396f1f133033856bf6be397a29b8.zip
newlib-335556d58b52396f1f133033856bf6be397a29b8.tar.gz
newlib-335556d58b52396f1f133033856bf6be397a29b8.tar.bz2
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/fhandler_console.cc')
-rw-r--r--winsup/cygwin/fhandler_console.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc
index b8f777e..78fa5e3 100644
--- a/winsup/cygwin/fhandler_console.cc
+++ b/winsup/cygwin/fhandler_console.cc
@@ -1677,7 +1677,7 @@ fhandler_console::init (HANDLE f, DWORD a, mode_t bin)
if (f != INVALID_HANDLE_VALUE)
CloseHandle (f); /* Reopened by open */
- this->tcsetattr (0, &tc->ti);
+ tcsetattr (0, &tc->ti);
}
int
@@ -1689,7 +1689,7 @@ fhandler_console::igncr_enabled (void)
void
fhandler_console::set_close_on_exec (int val)
{
- this->fhandler_base::set_close_on_exec (val);
+ fhandler_base::set_close_on_exec (val);
set_inheritance (output_handle, val);
}