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-07 08:48:58 +0300
committerChristopher Faylor <me@cgf.cx>2003-02-07 08:48:58 +0300
commit44a30b45104e6198875176d9ca742a4c6ca527a5 (patch)
treed6b34dffb5dbea0ce052333a406482816d9edd29
parent4a9cbef09d49a4ced1d3fc55219e9bbc5f937e2e (diff)
* pipe.cc (fhandler_pipe::close): Avoid extraneous this->.
-rw-r--r--winsup/cygwin/pipe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pipe.cc b/winsup/cygwin/pipe.cc
index 29a32b566..05b6c6f1d 100644
--- a/winsup/cygwin/pipe.cc
+++ b/winsup/cygwin/pipe.cc
@@ -85,7 +85,7 @@ fhandler_pipe::read (void *in_ptr, size_t& in_len)
int fhandler_pipe::close ()
{
- int res = this->fhandler_base::close ();
+ int res = fhandler_base::close ();
if (guard)
CloseHandle (guard);
if (writepipe_exists)