summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler_disk_file.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_disk_file.cc
parentad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff)
downloadcygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.gz
cygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.bz2
cygnal-335556d58b52396f1f133033856bf6be397a29b8.zip
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/fhandler_disk_file.cc')
-rw-r--r--winsup/cygwin/fhandler_disk_file.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_disk_file.cc b/winsup/cygwin/fhandler_disk_file.cc
index f535f5993..21052e533 100644
--- a/winsup/cygwin/fhandler_disk_file.cc
+++ b/winsup/cygwin/fhandler_disk_file.cc
@@ -368,7 +368,7 @@ fhandler_disk_file::open (path_conv *real_path, int flags, mode_t mode)
set_has_acls (real_path->has_acls ());
set_isremote (real_path->isremote ());
- int res = this->fhandler_base::open (real_path, flags | O_DIROPEN, mode);
+ int res = fhandler_base::open (real_path, flags | O_DIROPEN, mode);
if (!res)
goto out;
@@ -399,7 +399,7 @@ out:
int
fhandler_disk_file::close ()
{
- int res = this->fhandler_base::close ();
+ int res = fhandler_base::close ();
if (!res)
cygwin_shared->delqueue.process_queue ();
return res;