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
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-01-11 18:49:17 +0300
committerChristopher Faylor <me@cgf.cx>2005-01-11 18:49:17 +0300
commitd1adad904569d50022aa64f45bd012bc90cb887c (patch)
treeac72a338f5b89203f98a6bf9f0de1cdf72529d8d /winsup
parent2380dfe14ca24fcc7ddb63feb8f7e4958c1a76ea (diff)
revert previous erroneous checkin.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/strace.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/strace.cc b/winsup/cygwin/strace.cc
index 960a89460..fcbe16f08 100644
--- a/winsup/cygwin/strace.cc
+++ b/winsup/cygwin/strace.cc
@@ -125,7 +125,7 @@ strace::vsprntf (char *buf, const char *func, const char *infmt, va_list ap)
int microsec = microseconds ();
lmicrosec = microsec;
- __small_sprintf (fmt, "%7d [%s] %s ", microsec, tn, "%s %d/%d%s");
+ __small_sprintf (fmt, "%7d [%s] %s ", microsec, tn, "%s %d%s");
SetLastError (err);
@@ -147,7 +147,7 @@ strace::vsprntf (char *buf, const char *func, const char *infmt, va_list ap)
*p = '\000';
p = progname;
count = __small_sprintf (buf, fmt, p && *p ? p : "?",
- myself->pid ?: GetCurrentProcessId (), GetCurrentProcessId (),
+ myself->pid ?: GetCurrentProcessId (),
execing ? "!" : "");
if (func)
count += getfunc (buf + count, func);