diff options
author | Christopher Faylor <me@cgf.cx> | 2003-02-07 05:48:58 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-02-07 05:48:58 +0000 |
commit | 44a30b45104e6198875176d9ca742a4c6ca527a5 (patch) | |
tree | d6b34dffb5dbea0ce052333a406482816d9edd29 /winsup/cygwin/pipe.cc | |
parent | 4a9cbef09d49a4ced1d3fc55219e9bbc5f937e2e (diff) | |
download | cygnal-44a30b45104e6198875176d9ca742a4c6ca527a5.tar.gz cygnal-44a30b45104e6198875176d9ca742a4c6ca527a5.tar.bz2 cygnal-44a30b45104e6198875176d9ca742a4c6ca527a5.zip |
* pipe.cc (fhandler_pipe::close): Avoid extraneous this->.
Diffstat (limited to 'winsup/cygwin/pipe.cc')
-rw-r--r-- | winsup/cygwin/pipe.cc | 2 |
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) |