diff options
author | Christopher Faylor <me@cgf.cx> | 2005-01-11 15:49:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-01-11 15:49:17 +0000 |
commit | d1adad904569d50022aa64f45bd012bc90cb887c (patch) | |
tree | ac72a338f5b89203f98a6bf9f0de1cdf72529d8d /winsup | |
parent | 2380dfe14ca24fcc7ddb63feb8f7e4958c1a76ea (diff) | |
download | cygnal-d1adad904569d50022aa64f45bd012bc90cb887c.tar.gz cygnal-d1adad904569d50022aa64f45bd012bc90cb887c.tar.bz2 cygnal-d1adad904569d50022aa64f45bd012bc90cb887c.zip |
revert previous erroneous checkin.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/strace.cc | 4 |
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); |