diff options
author | Christopher Faylor <me@cgf.cx> | 2003-02-04 03:01:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-02-04 03:01:17 +0000 |
commit | 335556d58b52396f1f133033856bf6be397a29b8 (patch) | |
tree | ecec38e220fee1a21884cb97b752d8e79c0314b7 /winsup/cygwin/select.cc | |
parent | ad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff) | |
download | cygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.gz cygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.bz2 cygnal-335556d58b52396f1f133033856bf6be397a29b8.zip |
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/select.cc')
-rw-r--r-- | winsup/cygwin/select.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc index d8d89999c..72919241e 100644 --- a/winsup/cygwin/select.cc +++ b/winsup/cygwin/select.cc @@ -588,7 +588,7 @@ int fhandler_pipe::ready_for_read (int fd, DWORD howlong) { if (!howlong) - return this->fhandler_base::ready_for_read (fd, howlong); + return fhandler_base::ready_for_read (fd, howlong); get_guard (); return true; |