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-04 06:01:17 +0300
committerChristopher Faylor <me@cgf.cx>2003-02-04 06:01:17 +0300
commit335556d58b52396f1f133033856bf6be397a29b8 (patch)
treeecec38e220fee1a21884cb97b752d8e79c0314b7 /winsup/cygwin/strace.cc
parentad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff)
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/strace.cc')
-rw-r--r--winsup/cygwin/strace.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/winsup/cygwin/strace.cc b/winsup/cygwin/strace.cc
index 26f155aaa..38cf25907 100644
--- a/winsup/cygwin/strace.cc
+++ b/winsup/cygwin/strace.cc
@@ -207,7 +207,7 @@ strace::vprntf (unsigned category, const char *func, const char *fmt, va_list ap
PROTECT (buf);
SetLastError (err);
- count = this->vsprntf (buf, func, fmt, ap);
+ count = vsprntf (buf, func, fmt, ap);
CHECK (buf);
if (category & _STRACE_SYSTEM)
{
@@ -218,7 +218,7 @@ strace::vprntf (unsigned category, const char *func, const char *fmt, va_list ap
#ifndef NOSTRACE
if (active)
- this->write (category, buf, count);
+ write (category, buf, count);
#endif
SetLastError (err);
}
@@ -229,7 +229,7 @@ strace::prntf (unsigned category, const char *func, const char *fmt, ...)
va_list ap;
va_start (ap, fmt);
- this->vprntf (category, func, fmt, ap);
+ vprntf (category, func, fmt, ap);
}
extern "C" void
@@ -413,11 +413,11 @@ strace::wm (int message, int word, int lon)
{
if (ta[i].v == message)
{
- this->prntf (_STRACE_WM, NULL, "wndproc %d %s %d %d", message, ta[i].n, word, lon);
+ prntf (_STRACE_WM, NULL, "wndproc %d %s %d %d", message, ta[i].n, word, lon);
return;
}
}
- this->prntf (_STRACE_WM, NULL, "wndproc %d unknown %d %d", message, word, lon);
+ prntf (_STRACE_WM, NULL, "wndproc %d unknown %d %d", message, word, lon);
}
}
#endif /*NOSTRACE*/